autoformat on save configured

This commit is contained in:
Daniel B Sherry 2025-05-25 16:00:30 -05:00
parent 5bd1837e7d
commit cf673381c5
21 changed files with 220 additions and 967 deletions

View file

@ -1,20 +1,18 @@
items = [1, 2, 3]
print([x**2 for x in items])
print([x**3 for x in items])
for i in items:
print(i)
def myfunc(x: int) -> str:
'this is a docstring yuhhh'
"this is a docstring yuhhh"
return f"this is my num {x}"
def myfunc2():
pass
pass
print(myfunc(2))
print(myfunc(3))
print(myfunc(5))
print(myfunc(4))
print(myfunc(5))