Fix indent reported by pylint.

This commit is contained in:
Chikanaga Tomoyuki 2018-02-24 15:20:21 +09:00
parent 64c0bea500
commit 9cc8fd6479

View File

@ -203,7 +203,7 @@ def _get_paths(base_dir, parser):
for r in raw_paths:
# ListDirectory() return paths with "/" at the last if base_dir was GCS URL
if r[-1] == "/":
r = r[0:len(r)-1]
r = r[0:len(r)-1]
p = parser(Path(os.path.join(compat.as_str_any(base_dir),
compat.as_str_any(r)),
None))