Skip to content

Commit

Permalink
Fix initalization imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hdadhich01 committed Jul 8, 2022
1 parent df68363 commit 69f719a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "round-nutrition"
authors = [{ name = "Harsh Dadhich" }]
version = "1.0.4"
version = "1.0.5"
readme = "README.md"
description = "Round nutritional values for federal compliance."
classifiers = [
Expand Down
10 changes: 5 additions & 5 deletions round_nutrition/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from main import Main
from vitamin import Vitamin
from mineral import Mineral
from other import Other
from .main import Main
from .vitamin import Vitamin
from .mineral import Mineral
from .other import Other

__version__ = "1.0.4"
__version__ = "1.0.5"
__sources__ = [
"https://www.fda.gov/files/food/published/Food-Labeling-Guide-%28PDF%29.pdf",
"https://www.usdairy.com/~/media/usd/public/dmi-quick-reference-guide_nutrition-claims-for-dairy-products_2018.pdf",
Expand Down

0 comments on commit 69f719a

Please sign in to comment.