From efc93b73a88373a54c91b1206a6119503b8f6020 Mon Sep 17 00:00:00 2001 From: Skom Erik Date: Wed, 14 Feb 2024 22:02:02 +0300 Subject: [PATCH] [HW-#1.3] Remove return type annotations --- project/hw1/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/hw1/task.py b/project/hw1/task.py index 21cf3c058..00879dfb5 100644 --- a/project/hw1/task.py +++ b/project/hw1/task.py @@ -13,7 +13,7 @@ def getGraphInfoByName(graphName: str): ) -def createBiSycleGraph(cSize1: int, cSize2: int, labels: set[str], path: str): +def createBiSycleGraph(cSize1: int, cSize2: int, labels: set, path: str): graph = labeled_two_cycles_graph(n=cSize1, m=cSize2, labels=labels) print(path) write_dot(graph, path)