Skip to content

Commit

Permalink
return empty tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi committed Sep 18, 2023
1 parent bd7649d commit 150e3e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/utils/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def assertImport(self, root_pkg):
continue
if file.startswith("__"):
continue
if self.SKIP_MODULES and file in self.SKIP_MODULES.get(root_pkg):
if self.SKIP_MODULES and file in self.SKIP_MODULES.get(root_pkg, ()):
continue
root, _ = os.path.splitext(file)
module_name = f"{root_pkg}.{root}"
Expand Down

0 comments on commit 150e3e3

Please sign in to comment.