Skip to content

Commit ea74ea4

Browse files
committed
Merge pull request #454 from carljm/get-available-name-max-length
Add max_length arg to PipelineStorage.get_available_name.
2 parents 7c0df36 + 0259d37 commit ea74ea4

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)