From e4e867da15b37fac3a2e7d9c5f6cf0e1cb211fd0 Mon Sep 17 00:00:00 2001 From: Gaurav Mishra Date: Thu, 17 Mar 2022 10:35:21 +0000 Subject: [PATCH] fix(module): fix import of LanguageMapper --- nirjas/__init__.py | 5 +++-- setup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nirjas/__init__.py b/nirjas/__init__.py index 1544941..b9432a3 100644 --- a/nirjas/__init__.py +++ b/nirjas/__init__.py @@ -18,7 +18,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA """ -from nirjas.main import file_runner # noqa +from nirjas.main import file_runner # noqa +from nirjas.main import LanguageMapper # noqa def extract(file): @@ -31,4 +32,4 @@ def extract(file): return file_runner(file) # noqa -__all__ = ["file_runner", "extract", "LanguageMapper"] +__all__ = ["file_runner", "extract"] diff --git a/setup.py b/setup.py index 6c348ba..e8b44d5 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup( name='Nirjas', - version='1.0.0', + version='1.0.1', description='A Python library to extract comments and source code out of your file(s)', long_description=long_description, long_description_content_type='text/markdown',