8000 changed the default back to spaces (with "") · pylint-dev/pylint@67cd28a · GitHub
[go: up one dir, main page]

Skip to content

Commit 67cd28a

Browse files
committed
changed the default back to spaces (with "")
1 parent fbfd9e4 commit 67cd28a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/user_guide/configuration/all-options.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ Standard Checkers
906906
"""""""""""""""
907907
*String used as indentation unit. This is usually "    " (4 spaces) or "\t" (1 tab).*
908908

909-
**Default:** ``"    "``
909+
**Default:** ``" "``
910910

911911

912912
--max-line-length
@@ -955,7 +955,7 @@ Standard Checkers
955955
956956
indent-after-paren = 4
957957
958-
indent-string = "    "
958+
indent-string = " "
959959
960960
max-line-length = 100
961961

pylint/checkers/format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ class FormatChecker(BaseTokenChecker, BaseRawFileChecker):
219219
(
220220
"indent-string",
221221
{
222-
"default": '"    "',
222+
"default": '" "',
223223
"type": "non_empty_string",
224224
"metavar": "<string>",
225225
"help": "String used as indentation unit. This is usually "

0 commit comments

Comments
 (0)
0