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 коммит произвёл GitHub
Родитель cf16afafe9
Коммит b2bac3c5e6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)