mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
11 lines
175 B
Python
11 lines
175 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
|
|
|
|
# Non-lazy imports
|
|
import x
|
|
from y import z
|