Skip to content

Commit 2fa0195

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent c7968ef commit 2fa0195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/networkx/networkx/algorithms/planarity.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from decimal import Decimal
21
from _typeshed import Incomplete, Unused
32
from collections.abc import Generator, Iterable, Mapping, MutableSet, Reversible
3+
from decimal import Decimal
44
from typing import NoReturn
55

66
from networkx.classes.digraph import DiGraph
@@ -110,5 +110,5 @@ class PlanarEmbedding(DiGraph[_Node]):
110110
def add_edge(self, u_of_edge: _Node, v_of_edge: _Node, **attr: Unused) -> NoReturn: ...
111111
def add_edges_from(self, ebunch_to_add: Iterable[_EdgePlus[_Node]], **attr: Unused) -> NoReturn: ...
112112
def add_weighted_edges_from(
113-
self, ebunch_to_add: Iterable[tuple[_Node, _Node, float|Decimal|None]], weight: str = "weight", **attr: Unused
113+
self, ebunch_to_add: Iterable[tuple[_Node, _Node, float | Decimal | None]], weight: str = "weight", **attr: Unused
114114
) -> NoReturn: ...

0 commit comments

Comments
 (0)