-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Description
Place non private methods into the longbow package init.py. This means that what would have been something like this:
import longbow.corelibs.applications
applications.checkapp()
now becomes
import longbow
longbow.checkapp()
Makes the code more readable in complex software with many imports.