Skip to content

Commit

Permalink
more lint
Browse files Browse the repository at this point in the history
Signed-off-by: benrifkind <ben.rifkind@gmail.com>
  • Loading branch information
benrifkind committed Feb 4, 2021
1 parent 538038d commit 3bcf14b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/extractor/test_sql_alchemy_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

import unittest
from typing import Any
from typing import Any, Dict

from mock import patch
from pyhocon import ConfigFactory
Expand Down Expand Up @@ -100,7 +100,7 @@ def test_get_connection(self: Any, mock_method: Any) -> None:
Test that configs are passed through correctly to the _get_connection method
"""
extractor = SQLAlchemyExtractor()
config_dict = {
config_dict: Dict[str, Any] = {
'extractor.sqlalchemy.conn_string': 'TEST_CONNECTION',
'extractor.sqlalchemy.extract_sql': 'SELECT 1 FROM TEST_TABLE;'
}
Expand Down

0 comments on commit 3bcf14b

Please sign in to comment.