summaryrefslogtreecommitdiff
path: root/pylint/pyreverse
diff options
context:
space:
mode:
authorDudeNr33 <3929834+DudeNr33@users.noreply.github.com>2022-04-24 14:37:59 +0200
committerDudeNr33 <3929834+DudeNr33@users.noreply.github.com>2022-04-24 14:37:59 +0200
commitfa91e83270815bf0bf79f678d3b7404efc737921 (patch)
tree291ec55105ca8cc07c7a01d816e210b7f0363c24 /pylint/pyreverse
parentabfc2a4f4fe33c7499b008632b098399e3cf4320 (diff)
downloadpylint-git-fa91e83270815bf0bf79f678d3b7404efc737921.tar.gz
Fix handling of default value for extend action in Python 3.7
Diffstat (limited to 'pylint/pyreverse')
-rw-r--r--pylint/pyreverse/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/pyreverse/main.py b/pylint/pyreverse/main.py
index 5af9af0ad..23886f01e 100644
--- a/pylint/pyreverse/main.py
+++ b/pylint/pyreverse/main.py
@@ -61,7 +61,7 @@ OPTIONS: Options = (
metavar="<class>",
type="csv",
dest="classes",
- default=[],
+ default=None,
help="create a class diagram with all classes related to <class>;\
this uses by default the options -ASmy",
),