-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes relative import resulting in '__main__' is not a package error.
- Loading branch information
Showing
3 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
__email__ = '[email protected]' | ||
__version__ = '0.1.0' | ||
|
||
from .box import Box | ||
from .pallet import Pallet | ||
from .packedpallet import PackedPallet | ||
from .palletier import Solver | ||
from .packer import Packer | ||
from palletier.box import Box | ||
from palletier.pallet import Pallet | ||
from palletier.packedpallet import PackedPallet | ||
from palletier.palletier import Solver | ||
from palletier.packer import Packer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters