dotfiles/vscode/.vscode/extensions/kevinrose.vsc-python-indent-1.18.0/smoke_test.py
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

17 lines
329 B
Python

data = {'a': 0,
'b': [[1, 2,],
[3, 4]],
'c': 5}
def hello(
first: bool, second: bool,
):
# This comment line is waaaaaaaaaaaay too long.
if first and second:
raise ValueError('no')
elif first:
print('hello')
elif second:
print('world')
return 'done'