From 13993e0f38d5f272236887ef22b491eb1b20dce9 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 18 Nov 2019 16:42:15 -0800 Subject: [PATCH] Removed unused default value None to matches_patterns(). An iterable is always passed. --- django/contrib/staticfiles/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/contrib/staticfiles/utils.py b/django/contrib/staticfiles/utils.py index 221ce3b622..5c0a85a451 100644 --- a/django/contrib/staticfiles/utils.py +++ b/django/contrib/staticfiles/utils.py @@ -5,12 +5,12 @@ from django.conf import settings from django.core.exceptions import ImproperlyConfigured -def matches_patterns(path, patterns=None): +def matches_patterns(path, patterns): """ Return True or False depending on whether the ``path`` should be ignored (if it matches any pattern in ``ignore_patterns``). """ - return any(fnmatch.fnmatchcase(path, pattern) for pattern in (patterns or [])) + return any(fnmatch.fnmatchcase(path, pattern) for pattern in patterns) def get_files(storage, ignore_patterns=None, location=''):