Fix startswith check
This commit is contained in:
parent
90e2e1f7d2
commit
8f31072998
@ -13,7 +13,7 @@ def is_remote_path(path):
|
||||
Returns True iff the path is one of the remote formats that this
|
||||
module supports
|
||||
"""
|
||||
return path.startswith('gs://') or path.starts_with('hdfs://')
|
||||
return path.startswith('gs://') or path.startswith('hdfs://')
|
||||
|
||||
|
||||
def path_exists_remote(path):
|
||||
|
Loading…
x
Reference in New Issue
Block a user