aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2021-12-10 06:53:13 +0100
committerThomas Voss <thomasvoss@live.com> 2021-12-10 06:53:13 +0100
commit2025999a05b601075ba4b255121e38d5d6255800 (patch)
tree3b16e56995e9d4d25dfe52e8e268ea85ab71d0ab
parent422cd4dd15e21c16b21dae9fe0145bdc9d3d2a30 (diff)
Use a string instead of a tuple
-rw-r--r--2021/10/puzzles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/2021/10/puzzles.py b/2021/10/puzzles.py
index 919638f..f423c43 100644
--- a/2021/10/puzzles.py
+++ b/2021/10/puzzles.py
@@ -7,7 +7,7 @@ from typing import Counter
from functools import reduce
# END PART 2
-OPEN = ("(", "[", "{", "<")
+OPEN = "([{<"
def main() -> None: