mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +01:00
7 lines
135 B
Python
7 lines
135 B
Python
def unsafe_format():
|
|
if unlikely_condition():
|
|
args = (1,2)
|
|
else:
|
|
args = (1, 2, 3)
|
|
return "%s %s %s" % args
|