mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-07 03:07:46 +08:00
Enable ruff RUF100 rule (#11337)
This commit is contained in:
@ -35,7 +35,7 @@ def solution():
|
||||
70600674
|
||||
"""
|
||||
with open(os.path.dirname(__file__) + "/grid.txt") as f:
|
||||
l = [] # noqa: E741
|
||||
l = []
|
||||
for _ in range(20):
|
||||
l.append([int(x) for x in f.readline().split()])
|
||||
|
||||
|
Reference in New Issue
Block a user