kopia lustrzana https://github.com/bristol-seds/pico-tracker
10 wiersze
242 B
Python
10 wiersze
242 B
Python
![]() |
# Import every module in this subdirectory
|
||
|
import os
|
||
|
import glob
|
||
|
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
|
||
|
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
|
||
|
del os
|
||
|
del glob
|
||
|
del f
|
||
|
del modules
|