Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunxuTang committed Mar 8, 2024
1 parent d1f74ad commit de7db5b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion alluxiofs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ def __init__(

def _strip_protocol(path):
if self.fs:
return self.fs._strip_protocol(type(self)._strip_protocol(path))
return self.fs._strip_protocol(
type(self)._strip_protocol(path)
)
return path

self._strip_protocol: Callable = _strip_protocol
Expand Down

0 comments on commit de7db5b

Please sign in to comment.