You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running example01.py, I get the following error:
Traceback (most recent call last):
File "/Users/e30737/Desktop/Software/pyIRI2016/examples/example01.py", line 15, in <module>
main1()
File "/Users/e30737/Desktop/Software/pyIRI2016/examples/example01.py", line 10, in main1
IRIData, IRIDATAAdd = Obj.IRI()
File "/Users/e30737/Desktop/Software/pyIRI2016/pyiri2016/__init__.py", line 81, in IRI
hh, mm, ss = TimeUtilities().ToHMS(hrlt)
NameError: name 'TimeUtilities' is not defined
TimeUtilities is installed, but it is not being imported due to this try-except statement in __init__.py which fails to import iriwebg.
try:
from .iriweb import iriwebg
from timeutil import TimeUtilities
except ModuleNotFoundError:
pass # TODO
When the exception is printed, it produces No module named 'pyiri2016.iriweb', which I think suggests that the iriweb extension is not being built correctly when pyiri2016 is installed.
The text was updated successfully, but these errors were encountered:
When running
example01.py
, I get the following error:TimeUtilities is installed, but it is not being imported due to this try-except statement in
__init__.py
which fails to import iriwebg.When the exception is printed, it produces
No module named 'pyiri2016.iriweb'
, which I think suggests that the iriweb extension is not being built correctly when pyiri2016 is installed.The text was updated successfully, but these errors were encountered: