Skip to content

Commit

Permalink
Re-configure module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbayley committed May 3, 2024
1 parent 7a75426 commit 7fd3ad7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions gazelle/python/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
import gazelle as gz
from python.steel import SteelFabricator, SectionCategory, UniversalBeam

print("Welcome to Gazelle! 🦌")
print(f'The answer is: {gz.sum_as_string(10, 32)}')

sections = SteelFabricator[UniversalBeam] \
.make_all_sections(SectionCategory.UB)

for section in sections:
print(section)
2 changes: 1 addition & 1 deletion gazelle/python/steel.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from enum import Enum
from typing import Generic, NewType, Tuple, TypeVar, Union

from .units import (
from python.units import (
Area,
Carbon,
Centimetre,
Expand Down

0 comments on commit 7fd3ad7

Please sign in to comment.