The following issues were found

pipenv/vendor/termcolor.py
1 issues
Trailing newlines
Error

Line: 168 Column: 1

                  cprint('Underline red on grey color', 'red', 'on_grey',
            ['underline'])
    cprint('Reversed green on red color', 'green', 'on_red', ['reverse'])


            

Reported by Pylint.

pipenv/vendor/toml/__init__.py
1 issues
Constant name "_spec_" doesn't conform to UPPER_CASE naming style
Error

Line: 10 Column: 1

              from toml import decoder

__version__ = "0.10.2"
_spec_ = "0.5.0"

load = decoder.load
loads = decoder.loads
TomlDecoder = decoder.TomlDecoder
TomlDecodeError = decoder.TomlDecodeError

            

Reported by Pylint.

pipenv/vendor/cerberus/tests/test_legacy.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

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

pass

            

Reported by Pylint.

pipenv/vendor/chardet/cli/__init__.py
1 issues
Trailing newlines
Error

Line: 1 Column: 1

              

            

Reported by Pylint.

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

Line: 1 Column: 1

              # Expose a limited set of classes and functions so callers outside of
# the vcs package don't need to import deeper than `pip._internal.vcs`.
# (The test directory and imports protected by MYPY_CHECK_RUNNING may
# still need to import from a vcs sub-package.)
# Import all vcs modules to register each VCS in the VcsSupport object.
import pipenv.patched.notpip._internal.vcs.bazaar
import pipenv.patched.notpip._internal.vcs.git
import pipenv.patched.notpip._internal.vcs.mercurial
import pipenv.patched.notpip._internal.vcs.subversion  # noqa: F401

            

Reported by Pylint.

pipenv/patched/pipfile/__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.
from __future__ import absolute_import, division, print_function

__all__ = [
    "__title__", "__summary__", "__uri__", "__version__", "__author__",
    "__email__", "__license__", "__copyright__",
]

            

Reported by Pylint.

pipenv/patched/notpip/_vendor/__init__.py
1 issues
Missing function or method docstring
Error

Line: 29 Column: 1

              # Define a small helper function to alias our vendored modules to the real ones
# if the vendored ones do not exist. This idea of this was taken from
# https://github.com/kennethreitz/requests/pull/2567.
def vendored(modulename):
    vendored_name = "{0}.{1}".format(__name__, modulename)

    try:
        __import__(modulename, globals(), locals(), level=0)
    except ImportError:

            

Reported by Pylint.

pipenv/vendor/pythonfinder/_vendor/pep514tools/__main__.py
1 issues
Trailing newlines
Error

Line: 7 Column: 1

              #
# Distributed under the terms of the MIT License
#-------------------------------------------------------------------------


            

Reported by Pylint.

pipenv/vendor/importlib_metadata/_functools.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              import types
import functools


# from jaraco.functools 3.3
def method_cache(method, cache_wrapper=None):
    """
    Wrap lru_cache to support storing the cache data in the object instances.


            

Reported by Pylint.

pipenv/vendor/tomli/__init__.py
1 issues
Unable to import 'tomli._parser'
Error

Line: 6 Column: 1

              __all__ = ("loads", "load", "TOMLDecodeError")
__version__ = "1.1.0"  # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT

from tomli._parser import TOMLDecodeError, load, loads

            

Reported by Pylint.