mirror of
https://github.com/github/codeql.git
synced 2026-07-17 09:18:15 +02:00
4 lines
111 B
Python
4 lines
111 B
Python
def surplus_argument():
|
|
the_format = "{} {}" # Used to be "{} {} {}"
|
|
return the_format.format(1, 2, 3)
|