Skip to content

Commit

Permalink
Merge pull request #207 from BritishGeologicalSurvey/reh-type-hint
Browse files Browse the repository at this point in the history
added type hint to connection types in db_helper_factory
  • Loading branch information
leorudczenko authored Jun 24, 2024
2 parents a945b5f + f4151e6 commit a05bff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etlhelper/db_helper_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class DbHelperFactory():
"""
def __init__(self):
self.helpers = {}
self._conn_types = {}
self._conn_types: dict[str, str] = {}

def register_helper(self, dbtype, conn_type, db_helper):
"""
Expand Down

0 comments on commit a05bff3

Please sign in to comment.