mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
10 lines
108 B
Python
10 lines
108 B
Python
from typing import TYPE_CHECKING
|
|
|
|
if False:
|
|
import module1
|
|
|
|
if TYPE_CHECKING:
|
|
import module1
|
|
|
|
x = 1
|