Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Cleanup db_access module (PR #236)
Browse files Browse the repository at this point in the history
  • Loading branch information
vxgmichel authored Nov 23, 2018
2 parents a8f6a3b + 7189b08 commit 06d0a61
Show file tree
Hide file tree
Showing 3 changed files with 122 additions and 1,162 deletions.
14 changes: 0 additions & 14 deletions tango/databaseds/db_access/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +0,0 @@
__all__list__ = []
def _init_module() :
import os
for root,dirs,files in os.walk(__path__[0]) :
for file_name in files :
if file_name.startswith('__') : continue
base,ext = os.path.splitext(file_name)
if ext == '.py' :
subdir = root[len(__path__[0]) + 1:]
if subdir:
base = '%s.%s' % (subdir,base)
__all__list__.append(base)
_init_module()
__all__ = tuple(__all__list__)
Loading

0 comments on commit 06d0a61

Please sign in to comment.