mirror of
https://github.com/github/codeql.git
synced 2026-04-26 01:05:15 +02:00
4 lines
166 B
Python
4 lines
166 B
Python
def surplus_argument():
|
|
the_format = "{spam} {eggs}" # Used to be "{spam} {eggs} {chips}"
|
|
return the_format.format(spam = "spam", eggs="eggs", chips="chips")
|