by Anonymous » 06 Apr 2025, 21:42
Ich habe eine Funktion wie SO: < /p>
Code: Select all
def get_foo(a: object, b: tuple, c: int,) -> dict:
.....
Wenn ich $ Ruff Format myfile.py mache, wird meine Funktion in
geändert
Code: Select all
def get_foo(
a: object,
b: tuple,
c: int,
) -> dict:
....
Wie stoppe ich dieses Verhalten?
Ich habe eine Funktion wie SO: < /p>
[code]def get_foo(a: object, b: tuple, c: int,) -> dict:
.....
[/code]
Wenn ich $ Ruff Format myfile.py mache, wird meine Funktion in
geändert[code]def get_foo(
a: object,
b: tuple,
c: int,
) -> dict:
....
[/code]
Wie stoppe ich dieses Verhalten?