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:
Andrey
2022-10-29 16:07:02 +03:00
committed by GitHub
parent 18ffc4dec8
commit 584e743422
6 changed files with 14 additions and 9 deletions

View File

@ -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