dotfiles/vscode/.vscode/extensions/kevinrose.vsc-python-indent-1.18.0/smoke_test.py
2024-08-19 17:03:43 -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'