mirror of
https://github.com/github/codeql.git
synced 2026-04-29 02:35:15 +02:00
13 lines
212 B
Python
13 lines
212 B
Python
# Lazy imports (PEP 810)
|
|
lazy import a
|
|
lazy from b import c
|
|
lazy from d import e as f
|
|
lazy import g.h as i
|
|
lazy from ..j import k
|
|
lazy from l import *
|
|
|
|
# Non-lazy imports
|
|
import x
|
|
from y import z
|
|
from w import *
|