Skip to content

Commit ec30793

Browse files
committed
test(utils/db): Update iter method signature from BaseDB
1 parent 33b7376 commit ec30793

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/utils/db/db.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self, content=[]):
6767
def connect(self):
6868
self.q.put('connected', block=False)
6969

70-
def iter(self, stream_mode):
70+
def iter(self, stream_mode: bool = False):
7171
return iter(self._content)
7272

7373
def save(self, report):
@@ -92,7 +92,7 @@ def __init__(self, content=[]):
9292
def connect(self):
9393
pass
9494

95-
def iter(self, stream_mode):
95+
def iter(self, stream_mode: bool = False):
9696
return iter(self._content)
9797

9898
def save(self, report):

0 commit comments

Comments
 (0)