Page MenuHomec4science

__init__.py
No OneTemporary

File Metadata

Created
Thu, May 9, 02:39

__init__.py

#!/usr/bin/env python3
# flake8: noqa
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from . import bdparser
from . import run
from . import job
from . import base
from . import runselector
from . import jobselector
from . import conffile
from . import BDstat
from .bdparser import *
from .run import *
from .job import *
from .base import *
from .runselector import *
from .jobselector import *
from .conffile import *
from .BDstat import *
__all__ = ["run", "job", "base"]
__all__.extend(bdparser.__all__)
__all__.extend(run.__all__)
__all__.extend(job.__all__)
__all__.extend(base.__all__)
__all__.extend(runselector.__all__)
__all__.extend(jobselector.__all__)
__all__.extend(conffile.__all__)
__all__.extend(BDstat.__all__)
# try:
# import graphhelper
# __all__.append("graphhelper")
# from graphhelper import *
# __all__.extend(graphhelper.__all__)
# except:
# print "graphhelper not loaded"

Event Timeline