mirror of
https://github.com/github/codeql.git
synced 2026-01-02 01:08:53 +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
|