From 79fde141b6af6a12202e3faa6f03ea0dfdde7241 Mon Sep 17 00:00:00 2001 From: Kathy Reid Date: Wed, 24 Mar 2021 13:14:20 +1100 Subject: [PATCH] Replace `remove_remote()` method with `remove` method Partially resolves #3569 --- training/deepspeech_training/util/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/training/deepspeech_training/util/io.py b/training/deepspeech_training/util/io.py index 947b43af..bbd1e19d 100644 --- a/training/deepspeech_training/util/io.py +++ b/training/deepspeech_training/util/io.py @@ -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) \ No newline at end of file + return gfile.remove(filename)