mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
We currently have some problems with these files, that we should fix later down the line. See PR comment for more details.
11 lines
237 B
Python
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))
|