Skip to content

Commit 38deeb5

Browse files
authored
Use dict instead of OrderedDict (#792)
1 parent 275c4b5 commit 38deeb5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pipeline/collector.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import os
2-
from collections import OrderedDict
32

43
import django
54
from django.contrib.staticfiles import finders
@@ -33,7 +32,7 @@ def collect(self, request=None, files=[]):
3332
if self.request and self.request is request:
3433
return
3534
self.request = request
36-
found_files = OrderedDict()
35+
found_files = {}
3736
for finder in finders.get_finders():
3837
# Ignore our finder to avoid looping
3938
if isinstance(finder, PipelineFinder):

0 commit comments

Comments
 (0)