Skip to content

Commit 444f4e9

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ac275e4 commit 444f4e9

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

mypy/stubgen.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1745,12 +1745,7 @@ def parse_source_file(mod: StubSource, mypy_options: MypyOptions) -> None:
17451745
source = mypy.util.decode_python_encoding(data)
17461746
errors = Errors(mypy_options)
17471747
mod.ast = mypy.parse.parse(
1748-
source,
1749-
fnam=mod.path,
1750-
module=mod.module,
1751-
errors=errors,
1752-
options=mypy_options,
1753-
eager=True,
1748+
source, fnam=mod.path, module=mod.module, errors=errors, options=mypy_options, eager=True
17541749
)
17551750
mod.ast._fullname = mod.module
17561751
if errors.is_blockers():

0 commit comments

Comments
 (0)