Skip to content

Commit

Permalink
added type hint to connection types in db_helper_factory
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelheaven committed Jun 24, 2024
1 parent a945b5f commit f4151e6
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 f4151e6

Please sign in to comment.