mirror of
https://github.com/github/codeql.git
synced 2026-01-31 07:12:57 +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)
|
|
|