Skip to content

Commit

Permalink
Use dict instead of OrderedDict (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
peymanslh authored Apr 3, 2023
1 parent 275c4b5 commit 38deeb5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pipeline/collector.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import os
from collections import OrderedDict

import django
from django.contrib.staticfiles import finders
Expand Down Expand Up @@ -33,7 +32,7 @@ def collect(self, request=None, files=[]):
if self.request and self.request is request:
return
self.request = request
found_files = OrderedDict()
found_files = {}
for finder in finders.get_finders():
# Ignore our finder to avoid looping
if isinstance(finder, PipelineFinder):
Expand Down

0 comments on commit 38deeb5

Please sign in to comment.