Skip to content

Commit

Permalink
[HW-#1.3] Remove return type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
IThror10 committed Feb 14, 2024
1 parent ede8c9b commit e234e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/hw1/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit e234e49

Please sign in to comment.