mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Since it finally works as expected now, I also updated test data files to include this extra line feed required by PEP8.
12 lines
125 B
Python
12 lines
125 B
Python
def test_function(*args):
|
|
pass
|
|
|
|
|
|
test_function({
|
|
'a': 'b',
|
|
}, 5)
|
|
|
|
test_function(1,
|
|
2,
|
|
3)
|