mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-06 10:31:29 +08:00
Fix yesqa hook (#7843)
* fix yesqa hook * Remove redundant noqa * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -103,7 +103,7 @@ class SegmentTree(Generic[T]):
|
||||
>>> st.query(2, 3)
|
||||
7
|
||||
"""
|
||||
l, r = l + self.N, r + self.N # noqa: E741
|
||||
l, r = l + self.N, r + self.N
|
||||
|
||||
res: T | None = None
|
||||
while l <= r: # noqa: E741
|
||||
|
Reference in New Issue
Block a user