From 4284b508919eeaa0410da1d1fa5c1f964886c0b4 Mon Sep 17 00:00:00 2001 From: kleph Date: Mon, 13 Dec 2021 23:19:39 +0100 Subject: [PATCH] Lint --- 13/13.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/13.py b/13/13.py index a39a872..07a35ef 100755 --- a/13/13.py +++ b/13/13.py @@ -61,7 +61,7 @@ def fold_horizontally(g, fold_y): g[new_y][x] = 1 # cut the other half of the grid - for i in range(fold_y+1): + for _ in range(fold_y+1): g.pop()