Skip to content

Commit b1606ce

Browse files
committed
PipelineFinder.list should always return empty list
1 parent 638b794 commit b1606ce

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pipeline/finders.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ def find(self, path, all=False):
1717
return []
1818

1919
def list(self, ignore_patterns):
20-
if not settings.PIPELINE_ENABLED:
21-
return super(PipelineFinder, self).list(ignore_patterns)
22-
else:
23-
return []
20+
return []
2421

2522

2623
class ManifestFinder(BaseFinder):

0 commit comments

Comments
 (0)