mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
7 lines
123 B
Python
7 lines
123 B
Python
|
|
def format_as_tuple_incorrect(args):
|
|
return "%t" % args
|
|
|
|
def format_as_tuple_correct(args):
|
|
return "%r" % (args,)
|