mirror of
https://github.com/github/codeql.git
synced 2025-12-25 05:06:34 +01:00
7 lines
150 B
Python
7 lines
150 B
Python
|
|
def unsafe_format():
|
|
if unlikely_condition():
|
|
args = (1,2,3)
|
|
else:
|
|
args = {a:1,b:2,c:3}
|
|
return "%(a)s %(b)s %(c)s" % args |