mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
21 lines
188 B
Python
21 lines
188 B
Python
from outside import cond
|
|
|
|
try:
|
|
import module1
|
|
except ImportError:
|
|
quit()
|
|
|
|
module1
|
|
|
|
try:
|
|
import module2
|
|
except ImportError:
|
|
print("Error")
|
|
|
|
module2
|
|
|
|
if cond():
|
|
x = 0
|
|
|
|
x
|