Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
kgabryje committed Oct 3, 2023
1 parent 1eec421 commit 1a57cb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit_tests/common/test_query_object_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def session_factory() -> Mock:


class SimpleDatasetColumn:
def __init__(self, dictionary):
self.__dict__.update(dictionary)
def __init__(self, col_params: dict[str, Any]):
self.__dict__.update(col_params)


TEMPORAL_COLUMN_NAMES = ["temporal_column", "temporal_column_with_python_date_format"]
Expand Down

0 comments on commit 1a57cb8

Please sign in to comment.