Remove not used variable
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-12-20 12:37:43 +01:00
parent aae16d3c46
commit 310668d4a6

View File

@@ -12,7 +12,6 @@ def enhance(algorithm, in_image, boundary):
for y in range(min_y - boundary, max_y + boundary):
for x in range(min_x - boundary, max_x + boundary):
idx = 0
bit = 8
for dy in [-1, 0, 1]:
for dx in [-1, 0, 1]:
idx <<= 1