chore: Remove filter on staticfiles DeprecationWarning

This commit is contained in:
Jennifer Richards 2023-05-10 18:52:52 -03:00
parent 1015cf83f8
commit e6259a5218
No known key found for this signature in database
GPG key ID: 9B2BF5C5ADDA6A6E

View file

@ -16,7 +16,6 @@ warnings.simplefilter("always", DeprecationWarning)
warnings.filterwarnings("ignore", message="'urllib3\[secure\]' extra is deprecated")
warnings.filterwarnings("ignore", message="The logout\(\) view is superseded by")
warnings.filterwarnings("ignore", message="Report.file_reporters will no longer be available in Coverage.py 4.2", module="coverage.report")
warnings.filterwarnings("ignore", message="{% load staticfiles %} is deprecated")
warnings.filterwarnings("ignore", message="Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated", module="bleach")
warnings.filterwarnings("ignore", message="HTTPResponse.getheader\(\) is deprecated", module='selenium.webdriver')
try: