We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81dd376 commit 51ce658Copy full SHA for 51ce658
1 file changed
extensions/fine_python_black/fine_python_black/action.py
@@ -50,7 +50,7 @@ class BlackFormatHandlerConfig(code_action.ActionHandlerConfig):
50
# Literal["PY33", "PY34", "PY35", "PY36", "PY37",
51
# "PY38", "PY39", "PY310", "PY311", "PY312"]
52
str
53
- ] = []
+ ] = dataclasses.field(default_factory=list)
54
# default black line length is 88:
55
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length
56
line_length: int = 88
0 commit comments