Enable ruff RUF100 rule (#11337)

This commit is contained in:
Maxim Smolskiy
2024-04-01 22:36:41 +03:00
committed by GitHub
parent c328b000ec
commit 39daaf8248
14 changed files with 23 additions and 24 deletions

View File

@ -1,5 +1,5 @@
# Finding Articulation Points in Undirected Graph
def compute_ap(l): # noqa: E741
def compute_ap(l):
n = len(l)
out_edge_count = 0
low = [0] * n