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 c1771ed commit 04f6fa1Copy full SHA for 04f6fa1
idom/server/flask.py
@@ -227,6 +227,6 @@ def update_environ(self):
227
228
This includes getting the correct server name and port.
229
"""
230
- result = super().update_environ()
231
- self._before_first_request_callback()
232
- return result
+ super().update_environ()
+ # BUG: for some reason coverage doesn't seem to think this line is covered
+ self._before_first_request_callback() # pragma: no cover
0 commit comments