Replace remove_remote() method with remove method

Partially resolves #3569
This commit is contained in:
Kathy Reid 2021-03-24 13:22:11 +11:00 committed by Reuben Morais
parent c152be2343
commit 654a83a294
1 changed files with 1 additions and 1 deletions

View File

@ -78,4 +78,4 @@ def remove_remote(filename):
Wrapper that can remove local and remote files like `gs://...`
"""
# Conditional import
return gfile.remove_remote(filename)
return gfile.remove(filename)