mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
8 lines
170 B
Python
8 lines
170 B
Python
def unsafe_format():
|
|
the_format = "{} {} {}"
|
|
if unlikely_condition():
|
|
return the_format.format(1, 2)
|
|
else:
|
|
return the_format.format(1, 2, 3)
|
|
|