WaveCut commited on
Commit
bad9878
·
verified ·
1 Parent(s): 24245b6

Suppress Gradio route warning

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ asyncio.base_events.BaseEventLoop.__del__ = _quiet_invalid_fd_event_loop_del
26
  warnings.filterwarnings(
27
  "ignore",
28
  message=r".*HTTP_422_UNPROCESSABLE_ENTITY.*",
29
- category=DeprecationWarning,
30
  module=r"gradio\.routes",
31
  )
32
 
 
26
  warnings.filterwarnings(
27
  "ignore",
28
  message=r".*HTTP_422_UNPROCESSABLE_ENTITY.*",
29
+ category=Warning,
30
  module=r"gradio\.routes",
31
  )
32