Skip to content

Commit b97fe80

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 60c91f3 commit b97fe80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/networkx/networkx/classes/graph.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class Graph(Collection[_Node]):
7272
def add_edges_from(self, ebunch_to_add: Iterable[_EdgePlus[_Node]], **attr: Any) -> None: ...
7373
# attr: Edge data (or labels or objects) can be assigned using keyword arguments
7474
def add_weighted_edges_from(
75-
self, ebunch_to_add: Iterable[tuple[_Node, _Node, float|Decimal|None]], weight: str = "weight", **attr: Any
75+
self, ebunch_to_add: Iterable[tuple[_Node, _Node, float | Decimal | None]], weight: str = "weight", **attr: Any
7676
) -> None: ...
7777
# attr: Edge attributes to add/update for all edges.
7878
def remove_edge(self, u: _Node, v: _Node) -> None: ...

0 commit comments

Comments
 (0)