Skip to content

Commit 4a691df

Browse files
committed
py3 compatibility
1 parent 55a88b1 commit 4a691df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

effect/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,6 @@ def __init__(self, mapping):
190190
self.mapping = mapping
191191

192192
def __call__(self, intent):
193-
for k, v in self.mapping.iteritems():
193+
for k, v in self.mapping.items():
194194
if k == intent:
195195
return sync_performer(lambda d, i: v)

0 commit comments

Comments
 (0)