Python: format ql

This commit is contained in:
Rasmus Lerchedahl Petersen
2020-08-06 14:42:56 +02:00
parent e77ceaf4b8
commit ce86a8b72e

View File

@@ -153,7 +153,7 @@ newtype TContent =
/** An element of a tuple at a specifik index. */
TTupleElementContent(int index) { exists(IntegerLiteral lit | lit.getValue() = index) } or
/** An element of a dictionary under a specific key. */
TDictionaryElementContent(string key) { exists(StrConst s | s.getS() = key ) } or
TDictionaryElementContent(string key) { exists(StrConst s | s.getS() = key) } or
/** An element of a dictionary at any key. */
TDictionaryElementAnyContent()