From 654a83a2940c475fde7bcbf106db61bbafcf09c3 Mon Sep 17 00:00:00 2001 From: Kathy Reid Date: Wed, 24 Mar 2021 13:22:11 +1100 Subject: [PATCH] Replace remove_remote() method with remove method Partially resolves #3569 --- training/coqui_stt_training/util/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/training/coqui_stt_training/util/io.py b/training/coqui_stt_training/util/io.py index 947b43af..bbd1e19d 100644 --- a/training/coqui_stt_training/util/io.py +++ b/training/coqui_stt_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)