summaryrefslogtreecommitdiff
path: root/pygnulib/classes.py
diff options
context:
space:
mode:
authorDmitry Selyutin <ghostmansd@gmail.com>2017-09-08 18:34:58 +0300
committerDmitry Selyutin <ghostmansd@gmail.com>2017-09-08 18:34:58 +0300
commit21c52a82444a2f5f3307c7e2c1212beac42b9938 (patch)
treee8e23e3cf3377bf8f202cd661b0a8f87c7ef07ad /pygnulib/classes.py
parent4be624beba67fb2e6afd981be32b45fe73ecafb2 (diff)
downloadgnulib-21c52a82444a2f5f3307c7e2c1212beac42b9938.tar.gz
[pygnulib] autopep8 (fixing indentation, style, etc.)
Diffstat (limited to 'pygnulib/classes.py')
-rw-r--r--pygnulib/classes.py101
1 files changed, 50 insertions, 51 deletions
diff --git a/pygnulib/classes.py b/pygnulib/classes.py
index 3756db3c6e..9e8a65851a 100644
--- a/pygnulib/classes.py
+++ b/pygnulib/classes.py
@@ -9,57 +9,57 @@
__all__ = list()
try:
- # Constants
- from . import constants
-
- # Main classes
- from .GLConfig import GLConfig
- from .GLError import GLError
- from .GLInfo import GLInfo
-
- # File system
- from .GLFileSystem import GLFileSystem
- from .GLFileSystem import GLFileAssistant
-
- # Module system
- from .GLModuleSystem import GLModule
- from .GLModuleSystem import GLModuleSystem
- from .GLModuleSystem import GLModuleTable
-
- # Different modes
- from .GLImport import GLImport
- from .GLEmiter import GLEmiter
- from .GLTestDir import GLTestDir
- from .GLTestDir import GLMegaTestDir
-
- # Other modules
- from .GLMakefileTable import GLMakefileTable
+ # Constants
+ from . import constants
+
+ # Main classes
+ from .GLConfig import GLConfig
+ from .GLError import GLError
+ from .GLInfo import GLInfo
+
+ # File system
+ from .GLFileSystem import GLFileSystem
+ from .GLFileSystem import GLFileAssistant
+
+ # Module system
+ from .GLModuleSystem import GLModule
+ from .GLModuleSystem import GLModuleSystem
+ from .GLModuleSystem import GLModuleTable
+
+ # Different modes
+ from .GLImport import GLImport
+ from .GLEmiter import GLEmiter
+ from .GLTestDir import GLTestDir
+ from .GLTestDir import GLMegaTestDir
+
+ # Other modules
+ from .GLMakefileTable import GLMakefileTable
except ValueError as error:
- # Constants
- import constants
-
- # Main classes
- from GLConfig import GLConfig
- from GLError import GLError
- from GLInfo import GLInfo
-
- # File system
- from GLFileSystem import GLFileSystem
- from GLFileSystem import GLFileAssistant
-
- # Module system
- from GLModuleSystem import GLModule
- from GLModuleSystem import GLModuleSystem
- from GLModuleSystem import GLModuleTable
-
- # Different modes
- from GLImport import GLImport
- from GLEmiter import GLEmiter
- from GLTestDir import GLTestDir
- from GLTestDir import GLMegaTestDir
-
- # Other modules
- from GLMakefileTable import GLMakefileTable
+ # Constants
+ import constants
+
+ # Main classes
+ from GLConfig import GLConfig
+ from GLError import GLError
+ from GLInfo import GLInfo
+
+ # File system
+ from GLFileSystem import GLFileSystem
+ from GLFileSystem import GLFileAssistant
+
+ # Module system
+ from GLModuleSystem import GLModule
+ from GLModuleSystem import GLModuleSystem
+ from GLModuleSystem import GLModuleTable
+
+ # Different modes
+ from GLImport import GLImport
+ from GLEmiter import GLEmiter
+ from GLTestDir import GLTestDir
+ from GLTestDir import GLMegaTestDir
+
+ # Other modules
+ from GLMakefileTable import GLMakefileTable
# Append modules to namespace.
__all__ += ['GLConfig', 'GLError', 'GLInfo']
@@ -74,4 +74,3 @@ __all__ += ['GLMakefileTable']
__author__ = constants.__author__
__license__ = constants.__license__
__copyright__ = constants.__copyright__
-