Skip to content

Commit e25c9e0

Browse files
committed
fixup! fixup! amend! fixup! ModuleRouter: support paths in BASE
1 parent f166869 commit e25c9e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/satosa/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def join_paths(*paths, sep: typing.Optional[str] = None) -> str:
108108

109109
try:
110110
return leading + sep.join(
111-
[path.strip(sep) for path in filter(lambda p: p and p.strip(sep), paths)]
111+
path.strip(sep) for path in filter(lambda p: p and p.strip(sep), paths)
112112
)
113113
except (AttributeError, TypeError) as err:
114114
raise TypeError("Arguments must be strings") from err

0 commit comments

Comments
 (0)