mirror of
https://github.com/github/codeql.git
synced 2026-01-03 09:40:17 +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
|