The following issues were found

pipenv/vendor/first.py
2 issues
Variable name "el" doesn't conform to snake_case naming style
Error

Line: 70 Column: 13

              
    """
    if key is None:
        for el in iterable:
            if el:
                return el
    else:
        for el in iterable:
            if key(el):

            

Reported by Pylint.

Variable name "el" doesn't conform to snake_case naming style
Error

Line: 74 Column: 13

                          if el:
                return el
    else:
        for el in iterable:
            if key(el):
                return el

    return default

            

Reported by Pylint.

pipenv/patched/notpip/_internal/operations/install/editable_legacy.py
1 issues
Too many arguments (10/5)
Error

Line: 19 Column: 1

              logger = logging.getLogger(__name__)


def install_editable(
    install_options,  # type: List[str]
    global_options,  # type: Sequence[str]
    prefix,  # type: Optional[str]
    home,  # type: Optional[str]
    use_user_site,  # type: bool

            

Reported by Pylint.

pipenv/patched/notpip/_vendor/chardet/langgreekmodel.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/langhebrewmodel.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              ######################## BEGIN LICENSE BLOCK ########################
# The Original Code is Mozilla Universal charset detector code.
#
# The Initial Developer of the Original Code is
#          Simon Montagu
# Portions created by the Initial Developer are Copyright (C) 2005
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):

            

Reported by Pylint.

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

Line: 1 Column: 1

              from itertools import filterfalse


def unique_everseen(iterable, key=None):
    "List unique elements, preserving order. Remember all elements ever seen."
    # unique_everseen('AAAABBBCCDAABBB') --> A B C D
    # unique_everseen('ABBCcAD', str.lower) --> A B C D
    seen = set()
    seen_add = seen.add

            

Reported by Pylint.

pipenv/__version__.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              #     ___     ( )  ___      ___       __
#   //   ) ) / / //   ) ) //___) ) //   ) ) ||  / /
#  //___/ / / / //___/ / //       //   / /  || / /
# //       / / //       ((____   //   / /   ||/ /
__version__ = "2021.5.29"

            

Reported by Pylint.

pipenv/patched/notpip/_vendor/chardet/langhungarianmodel.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/langthaimodel.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/langturkishmodel.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              # -*- coding: utf-8 -*-
######################## 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.
#

            

Reported by Pylint.

pipenv/patched/notpip/_vendor/idna/uts46data.py
1 issues
Too many lines in module (8205/1000)
Error

Line: 1 Column: 1

              # This file is automatically generated by tools/idna-data
# vim: set fileencoding=utf-8 :

"""IDNA Mapping Table from UTS46."""


__version__ = "11.0.0"
def _seg_0():
    return [

            

Reported by Pylint.