Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr committed Jul 18, 2023
1 parent ce1e05f commit 34d7bb3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pydoctor/astutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import platform
import sys
from numbers import Number
from typing import Any, Iterator, Optional, List, Iterable, Sequence, TYPE_CHECKING, Tuple, Union, Type, TypeVar, Generic
from inspect import BoundArguments, Signature, Parameter
from typing import Any, Iterator, Optional, List, Iterable, Sequence, TYPE_CHECKING, Tuple, Union, Type, TypeVar
from inspect import BoundArguments, Signature
import ast

from pydoctor import visitor
Expand Down
1 change: 0 additions & 1 deletion pydoctor/extensions/attrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
from pydoctor.epydoc.markup._pyval_repr import colorize_inline_pyval

from pydoctor.epydoc2stan import parse_docstring
from pydoctor.epydoc.docutils import new_document, set_node_attributes



Expand Down
2 changes: 1 addition & 1 deletion pydoctor/templatewriter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Render pydoctor data as HTML."""
from typing import Any, Iterable, Iterator, Optional, Union, cast, TYPE_CHECKING
from typing import Any, Iterable, Iterator, Optional, Union, TYPE_CHECKING
if TYPE_CHECKING:
from typing_extensions import Protocol, runtime_checkable
else:
Expand Down

0 comments on commit 34d7bb3

Please sign in to comment.