The following issues were found

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

Line: 1 Column: 1

              # This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.

__all__ = [
    "__title__",
    "__summary__",
    "__uri__",
    "__version__",

            

Reported by Pylint.

pipenv/vendor/orderedmultidict/__version__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              # -*- coding: utf-8 -*-

#
# omdict - Ordered Multivalue Dictionary.
#
# Ansgar Grunseid
# grunseid.com
# grunseid@gmail.com
#

            

Reported by Pylint.

pipenv/patched/notpip/_internal/cli/main_parser.py
1 issues
Missing function or method docstring
Error

Line: 59 Column: 1

                  return parser


def parse_command(args):
    # type: (List[str]) -> Tuple[str, List[str]]
    parser = create_main_parser()

    # Note: parser calls disable_interspersed_args(), so the result of this
    # call is to split the initial args into the general options before the

            

Reported by Pylint.

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

Line: 1 Column: 1

              from pathlib import Path


DOCUMENTS_PATH = Path(__file__).parent / "documents"

            

Reported by Pylint.

pipenv/patched/notpip/_internal/distributions/installed.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              from pipenv.patched.notpip._internal.distributions.base import AbstractDistribution
from pipenv.patched.notpip._internal.utils.typing import MYPY_CHECK_RUNNING

if MYPY_CHECK_RUNNING:
    from typing import Optional

    from pipenv.patched.notpip._vendor.pkg_resources import Distribution
    from pipenv.patched.notpip._internal.index.package_finder import PackageFinder


            

Reported by Pylint.

pipenv/patched/notpip/_internal/cli/status_codes.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              from __future__ import absolute_import

SUCCESS = 0
ERROR = 1
UNKNOWN_ERROR = 2
VIRTUALENV_NOT_FOUND = 3
PREVIOUS_BUILD_DIR_ERROR = 4
NO_MATCHES_FOUND = 23

            

Reported by Pylint.

pipenv/vendor/shellingham/posix/_core.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              import collections

Process = collections.namedtuple("Process", "args pid ppid")

            

Reported by Pylint.

pipenv/patched/notpip/_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.5's, so we only want to
    # import the match_hostname function if it's at least that good.
    if sys.version_info < (3, 5):
        raise ImportError("Fallback to vendored code")

    from ssl import CertificateError, match_hostname

            

Reported by Pylint.

pipenv/patched/notpip/_vendor/webencodings/labels.py
1 issues
XXX Do not edit!
Error

Line: 13 Column: 3

              
"""

# XXX Do not edit!
# This file is automatically generated by mklabels.py

LABELS = {
    'unicode-1-1-utf-8':   'utf-8',
    'utf-8':               'utf-8',

            

Reported by Pylint.

pipenv/patched/notpip/_internal/distributions/__init__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              from pipenv.patched.notpip._internal.distributions.sdist import SourceDistribution
from pipenv.patched.notpip._internal.distributions.wheel import WheelDistribution
from pipenv.patched.notpip._internal.utils.typing import MYPY_CHECK_RUNNING

if MYPY_CHECK_RUNNING:
    from pipenv.patched.notpip._internal.distributions.base import AbstractDistribution
    from pipenv.patched.notpip._internal.req.req_install import InstallRequirement



            

Reported by Pylint.