mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
10 lines
214 B
Python
10 lines
214 B
Python
import typing
|
|
import collections.abc
|
|
import foo
|
|
from typing import ByteString
|
|
from collections.abc import ByteString
|
|
from foo import ByteString
|
|
|
|
a: typing.ByteString
|
|
b: collections.abc.ByteString
|
|
c: foo.ByteString
|