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
for consistency just use lowercase and underscores for library names.
change name of GOSTnet.py to core.py
change init.py from:
from GOSTnets.GOSTnet import *
to
from .core import *
from .calculate_od import *
from .optimization import *
etc...
I am working on the Sphinx documentation now and the autodoc functionality. It is spitting out function names like "GOSTnets.GOSTnet.find_graph_avg_speed"; so this way should make the function names look nicer too.
The text was updated successfully, but these errors were encountered:
so I did this. One thing this does is want the extra underlying libraries to have their dependencies too. So we may want to continue thinking about this.
to
I am working on the Sphinx documentation now and the autodoc functionality. It is spitting out function names like "GOSTnets.GOSTnet.find_graph_avg_speed"; so this way should make the function names look nicer too.
The text was updated successfully, but these errors were encountered: