Skip to content

Commit 0259d37

Browse files
committed
Add max_length arg to PipelineStorage.get_available_name.
1 parent 7c0df36 commit 0259d37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipeline/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def post_process(self, paths, dry_run=False, **options):
3939
for name, hashed_name, processed in super_class.post_process(paths.copy(), dry_run, **options):
4040
yield name, hashed_name, processed
4141

42-
def get_available_name(self, name):
42+
def get_available_name(self, name, max_length=None):
4343
if self.exists(name):
4444
self.delete(name)
4545
return name

0 commit comments

Comments
 (0)