diff --git a/ArchiveExtractor/Access.py b/ArchiveExtractor/Access.py index ce376b45304e470fbd857140c90bfca87c3c4cf9..3cf194d5c02b1480f2e676cc835e21890171cbb7 100644 --- a/ArchiveExtractor/Access.py +++ b/ArchiveExtractor/Access.py @@ -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 ### ########################################################################## diff --git a/ArchiveExtractor/__init__.py b/ArchiveExtractor/__init__.py index a8ea30b433627a6312e4dea766f95165219f5d28..75fcb96b962e9723dae388efd6c2631bd860345e 100644 --- a/ArchiveExtractor/__init__.py +++ b/ArchiveExtractor/__init__.py @@ -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) + +