Skip to content

Commit

Permalink
Comms: Skip more benign messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Aug 18, 2024
1 parent 4189fbf commit c09aa62
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spyder_kernels/comms/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ def is_benign_message(self, message):
"Warning: Cannot change to a different GUI toolkit",
"%pylab is deprecated",
"Populating the interactive namespace",
"\n"
"\n",
# Fixes spyder-ide/spyder#21652
"WARNING",
"Active device does not have an attribute",
]

return any([msg in message for msg in benign_messages])
Expand Down

0 comments on commit c09aa62

Please sign in to comment.