Skip to content

Commit

Permalink
Merge pull request #402 from kiyoon/fix/module-shadowing
Browse files Browse the repository at this point in the history
fix: shadowed module recovered `pdb2pqr.main`
  • Loading branch information
sobolevnrm authored Nov 16, 2024
2 parents 5cf80df + 80f3cbb commit e355d88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdb2pqr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""
import logging
from sys import version_info
from .main import main
from .main import main as pdb2pqr_main
from ._version import __version__ # noqa: F401


Expand All @@ -19,4 +19,4 @@


if __name__ == "__main__":
main()
pdb2pqr_main()

0 comments on commit e355d88

Please sign in to comment.