Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeon committed Oct 11, 2024
1 parent a8beac3 commit 3248a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocfl/layout_nnnn_tuple_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def identifier_to_path(self, identifier):
while len(id_remains) > self.tuple_size:
segments.append(id_remains[0:self.tuple_size])
id_remains = id_remains[self.tuple_size:]
segments.append(id_remains) # the statement means that segmets will always have at least one element
segments.append(id_remains) # the statement means that segments will always have at least one element
# Use full identifier to encapsulate
segments.append(identifier)
return os.path.join(*segments) # pylint: disable=no-value-for-parameter

0 comments on commit 3248a78

Please sign in to comment.