From 5b1d68dd2dfa56c4bc5fb5480c7e99588be30961 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 8 Sep 2021 16:01:03 +0200 Subject: [PATCH] Update `check_yaml()` comment (#4713) * Update `check_yaml()` comment * Cleanup --- utils/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/general.py b/utils/general.py index 2033f76126f8..f2af386a7d93 100755 --- a/utils/general.py +++ b/utils/general.py @@ -252,7 +252,7 @@ def check_suffix(file='yolov5s.pt', suffix=('.pt',), msg=''): def check_yaml(file, suffix=('.yaml', '.yml')): - # Check YAML file(s) for acceptable suffixes + # Search/download YAML file (if necessary) and return path, checking suffix return check_file(file, suffix)