We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c8dd0 commit 6ce1b9fCopy full SHA for 6ce1b9f
python/ql/src/Variables/UndefinedExport.ql
@@ -59,7 +59,7 @@ predicate contains_unknown_import_star(ModuleValue m) {
59
from ModuleValue m, StrConst name, string exported_name
60
where
61
declaredInAll(m.getScope(), name) and
62
- exported_name = name.strValue() and
+ exported_name = name.getText() and
63
not m.hasAttribute(exported_name) and
64
not is_exported_submodule_name(m, exported_name) and
65
not contains_unknown_import_star(m) and
0 commit comments