Remove -> None for Python functions

This commit is contained in:
krahets
2023-07-24 22:34:05 +08:00
parent ac0f405f9a
commit 90af225dae
31 changed files with 82 additions and 82 deletions

View File

@ -6,7 +6,7 @@
class Vertex:
"""顶点类"""
def __init__(self, val: int) -> None:
def __init__(self, val: int):
self.val = val