Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address review: import Generator from collections.abc
  • Loading branch information
erlend-aasland committed Jul 4, 2023
commit 3667a1706ed576c03f2d2f0f50d685bcdad9b2d8
3 changes: 1 addition & 2 deletions Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@
import textwrap
import traceback

from collections.abc import Callable, Iterable, Reversible
from collections.abc import Callable, Generator, Iterable, Reversible
from types import FunctionType, NoneType
from typing import (
Any,
Final,
Generator,
Literal,
NamedTuple,
NoReturn,
Expand Down