Skip to content

Commit

Permalink
fix: use absolute imports in entrypoint script
Browse files Browse the repository at this point in the history
Required to successfully build a standalone package with PyInstaller
  • Loading branch information
jag1g13 committed May 28, 2021
1 parent 3e822d5 commit 1509247
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pycgtool/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

from rich.logging import RichHandler

from .frame import Frame
from .mapping import Mapping
from .bondset import BondSet
from .forcefield import ForceField
from pycgtool.frame import Frame
from pycgtool.mapping import Mapping
from pycgtool.bondset import BondSet
from pycgtool.forcefield import ForceField

PathLike = typing.Union[pathlib.Path, str]

Expand Down

0 comments on commit 1509247

Please sign in to comment.