Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pi-r-squared committed Jul 23, 2024
1 parent 09cd830 commit a15f56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pirrtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def get_base_package(module):
Returns:
str: The base package of the module.
"""
return module.__name__.split(".", maxsplits=1)[0]
return module.__name__.split(".", maxsplit=1)[0]


def find_instances(cls, module):
Expand Down

0 comments on commit a15f56c

Please sign in to comment.