autoformat on save configured
This commit is contained in:
parent
5bd1837e7d
commit
cf673381c5
21 changed files with 220 additions and 967 deletions
12
tester.py
12
tester.py
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue