From e9915347dcee84fb0cb86f74c32038ba2b2511dc 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 | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nirjas/__init__.py b/nirjas/__init__.py index 1544941..febb5a9 100644 --- a/nirjas/__init__.py +++ b/nirjas/__init__.py @@ -19,6 +19,7 @@ """ from nirjas.main import file_runner # noqa +from nirjas.main import LanguageMapper 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',