mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
In 25cb52aa52 I accidentally introduced an extra `not` where none existed before. Whoops!
9 lines
155 B
Plaintext
9 lines
155 B
Plaintext
import python
|
|
|
|
from string k, string v
|
|
where
|
|
k.matches("options.%") and
|
|
not k.matches("options.verbos%") and
|
|
py_flags_versioned(k, v, _)
|
|
select k, v
|