From 1bc1dfda5f97b693dd02ae0063562c4398164a8f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 05:15:11 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- graphs/directed_and_undirected_weighted_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphs/directed_and_undirected_weighted_graph.py b/graphs/directed_and_undirected_weighted_graph.py index 640da1bad..7e80fbb33 100644 --- a/graphs/directed_and_undirected_weighted_graph.py +++ b/graphs/directed_and_undirected_weighted_graph.py @@ -10,12 +10,12 @@ Useful Links: https://www.geeksforgeeks.org/applications-advantages-and-disadvan https://en.wikipedia.org/wiki/Graph_(discrete_mathematics) """ - from collections import deque from math import floor from random import random from time import time + class DirectedGraph: def __init__(self): self.graph = {}