Skip to content

Commit 2e57d64

Browse files
committed
-
1 parent 221f033 commit 2e57d64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source_py3/test_python_toolbox/test_sleek_reffing/test_cute_sleek_value_dict/test_generic_dict_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def __next__(self):
231231
rtn = chr(self.i)
232232
self.i += 1
233233
return rtn
234-
return
234+
raise StopIteration
235235
return BogonIter()
236236
def __getitem__(self, key):
237237
raise Exc

source_py3/test_python_toolbox/third_party/forked_mapping_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def __next__(self):
239239
rtn = chr(self.i)
240240
self.i += 1
241241
return rtn
242-
return
242+
raise StopIteration
243243
return BogonIter()
244244
def __getitem__(self, key):
245245
raise Exc

0 commit comments

Comments
 (0)