Skip to content

Commit 04f6fa1

Browse files
committed
just ignore weird coverage bug
1 parent c1771ed commit 04f6fa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

idom/server/flask.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,6 @@ def update_environ(self):
227227
228228
This includes getting the correct server name and port.
229229
"""
230-
result = super().update_environ()
231-
self._before_first_request_callback()
232-
return result
230+
super().update_environ()
231+
# BUG: for some reason coverage doesn't seem to think this line is covered
232+
self._before_first_request_callback() # pragma: no cover

0 commit comments

Comments
 (0)