Replace remove_remote() method with remove method
Partially resolves #3569
This commit is contained in:
parent
c152be2343
commit
654a83a294
|
@ -78,4 +78,4 @@ def remove_remote(filename):
|
||||||
Wrapper that can remove local and remote files like `gs://...`
|
Wrapper that can remove local and remote files like `gs://...`
|
||||||
"""
|
"""
|
||||||
# Conditional import
|
# Conditional import
|
||||||
return gfile.remove_remote(filename)
|
return gfile.remove(filename)
|
||||||
|
|
Loading…
Reference in New Issue