The following issues were found

pipenv/patched/notpip/_vendor/chardet/langbulgarianmodel.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              ######################## BEGIN LICENSE BLOCK ########################
# The Original Code is Mozilla Communicator client code.
#
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 1998
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):

            

Reported by Pylint.

pipenv/patched/notpip/_vendor/chardet/langcyrillicmodel.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              ######################## BEGIN LICENSE BLOCK ########################
# The Original Code is Mozilla Communicator client code.
#
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 1998
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):

            

Reported by Pylint.

pipenv/vendor/requests/packages.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              import sys

try:
    import chardet
except ImportError:
    import charset_normalizer as chardet
    import warnings

    warnings.filterwarnings('ignore', 'Trying to detect', module='charset_normalizer')

            

Reported by Pylint.

tests/fixtures/fake-package/setup.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              import ast
import os

from setuptools import find_packages, setup


ROOT = os.path.dirname(__file__)

PACKAGE_NAME = 'fake_package'

            

Reported by Pylint.

tests/fixtures/cython-import-package/src/cython_import_package/__init__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              __version__ = "0.0.1"

            

Reported by Pylint.

pipenv/vendor/urllib3/_version.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              # This file is protected via CODEOWNERS
__version__ = "1.26.6"

            

Reported by Pylint.

pipenv/vendor/wheel/__init__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              __version__ = '0.36.2'

            

Reported by Pylint.

pipenv/vendor/yarg/__about__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              __title__ = 'yarg'
__version__ = '0.1.9'
__author__ = 'Kura'
__email__ = 'kura@kura.io'
__url__ = 'https://yarg.readthedocs.org/'
__license__ = 'MIT'
__copyright__ = 'Copyright 2014 Kura'

            

Reported by Pylint.

tests/fixtures/legacy-backend-package/src/legacy_backend_package/__init__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              __version__ = "0.0.1"

            

Reported by Pylint.

pipenv/vendor/urllib3/packages/ssl_match_hostname/__init__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              import sys

try:
    # Our match_hostname function is the same as 3.10's, so we only want to
    # import the match_hostname function if it's at least that good.
    # We also fallback on Python 3.10+ because our code doesn't emit
    # deprecation warnings and is the same as Python 3.10 otherwise.
    if sys.version_info < (3, 5) or sys.version_info >= (3, 10):
        raise ImportError("Fallback to vendored code")

            

Reported by Pylint.