Skip to content

Commit

Permalink
Ignore no-member false-errors from pylint regarding versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Jan 4, 2024
1 parent f6914a7 commit f7bb920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name="morpheus",
version=versioneer.get_version(),
version=versioneer.get_version(), # pylint: disable=no-member
description="Morpheus",
classifiers=[
"Development Status :: 3 - Alpha",
Expand All @@ -44,7 +44,7 @@
],
license="Apache",
python_requires='>=3.10, <4',
cmdclass=versioneer.get_cmdclass(),
cmdclass=versioneer.get_cmdclass(), # pylint: disable=no-member
entry_points='''
[console_scripts]
morpheus=morpheus.cli:run_cli
Expand Down

0 comments on commit f7bb920

Please sign in to comment.