Skip to content

Commit

Permalink
Merge pull request #57 from fossology/fix/import/languagemapper
Browse files Browse the repository at this point in the history
fix(module): fix import of LanguageMapper
  • Loading branch information
Kaushl2208 authored Mar 17, 2022
2 parents 0e763df + e4e867d commit c9796a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions nirjas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -31,4 +32,4 @@ def extract(file):
return file_runner(file) # noqa


__all__ = ["file_runner", "extract", "LanguageMapper"]
__all__ = ["file_runner", "extract"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit c9796a8

Please sign in to comment.