Skip to content
Snippets Groups Projects
Commit 44c13d1c authored by BRONES Romain's avatar BRONES Romain
Browse files

Move module wide variables

parent 47234c7d
No related branches found
No related tags found
No related merge requests found
......@@ -20,16 +20,6 @@ if not logger.hasHandlers():
sh.setFormatter(logging.Formatter("%(levelname)s:%(message)s"))
logger.addHandler(sh)
##########################################################################
### Module private variables ###
##########################################################################
# Tuple of extractor for HDB and TDB
_extractors = (None, None)
# Tuple for attribute tables
_AttrTables = (None, None)
##########################################################################
### Module initialisation functions ###
##########################################################################
......
......@@ -5,3 +5,16 @@ Python module for extracting attribute from Archive Extractor Device.
__version__ = "AUTOVERSIONREPLACE"
__all__ = ["Access", ]
##########################################################################
### Module private variables ###
##########################################################################
# Tuple of extractor for HDB and TDB
global _extractors
_extractors = (None, None)
# Tuple for attribute tables
global _AttrTables
_AttrTables = (None, None)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment