Files
codeql/python/ql/test/modelling/NotPackage/not_in_package_script.py
Rasmus Wriedt Larsen dc33f0de1d Python: Additional tests for model-editor
We currently have some problems with these files, that we should fix
later down the line. See PR comment for more details.
2024-07-02 14:28:46 +02:00

11 lines
237 B
Python

#!/usr/bin/env python
import not_in_pacakge_lib
def not_in_package_script_func(x, y):
return x + y
if __name__ == "__main__":
print(not_in_pacakge_lib.not_in_pacakge_lib_func(1, 2))
print(not_in_package_script_func(3, 4))