CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
__init__.py28 linesDownload Raw Back to autocommand
1# Copyright 2014-2016 Nathan West2#3# This file is part of autocommand.4#5# autocommand is free software: you can redistribute it and/or modify6# it under the terms of the GNU Lesser General Public License as published by7# the Free Software Foundation, either version 3 of the License, or8# (at your option) any later version.9#10# autocommand is distributed in the hope that it will be useful,11# but WITHOUT ANY WARRANTY; without even the implied warranty of12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the13# GNU Lesser General Public License for more details.14#15# You should have received a copy of the GNU Lesser General Public License16# along with autocommand.  If not, see <http://www.gnu.org/licenses/>.17 18# flake8 flags all these imports as unused, hence the NOQAs everywhere.19 20from .automain import automain  # NOQA21from .autoparse import autoparse, smart_open  # NOQA22from .autocommand import autocommand  # NOQA23 24try:25    from .autoasync import autoasync  # NOQA26except ImportError:  # pragma: no cover27    pass28 
Aluode/PerceptionLabPortable · CoolFace