We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 281127c commit 4b5919cCopy full SHA for 4b5919c
__init__.py
@@ -1,4 +1,4 @@
1
-import prelude
+from . import prelude
2
3
from commands import dt
4
from commands import stackfold
util.py
@@ -15,7 +15,7 @@ def StdMapToDict(iMap):
15
it = StdMapPrinter('map', iMap).children()
16
res = {}
17
for key, value in it:
18
- m = re.search('\[(\d{1,3})\]', key)
+ m = re.search(r'[(\d{1,3})]', key)
19
if m:
20
count = int(m.group(1))
21
if count % 2 == 0:
0 commit comments