Skip to content

Commit 1e6f2f5

Browse files
authored
Hound fixes
It keeps *hounding* me
1 parent eb0b1f9 commit 1e6f2f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Qt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,8 +760,8 @@ def _new_module(name):
760760

761761

762762
def _import_sub_module(module, name):
763-
"""import_sub_module will mimic the functionality of importlib.import_module"""
764-
module = __import__(module.__name__ + "." + name)
763+
"""import_sub_module will mimic the function of importlib.import_module"""
764+
module = __import__(module.__name__ + "." + name)
765765
for level in name.split("."):
766766
module = getattr(module, level)
767767
return module

0 commit comments

Comments
 (0)