From e88ebeeaac296a3955fd226caa16d29f85b98a21 Mon Sep 17 00:00:00 2001 From: Sam Wu <22262939+samjwu@users.noreply.github.com> Date: Thu, 9 May 2024 15:09:35 -0600 Subject: [PATCH] style(conf.py): Apply black formatting to docs/conf.py Signed-off-by: Sam Wu <22262939+samjwu@users.noreply.github.com> --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index baad90774..58cfd3794 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,8 +30,8 @@ from rocm_docs import ROCmDocs -with open('../VERSION', encoding='utf-8') as f: - match = re.search(r'([0-9.]+)[^0-9.]+', f.read()) +with open("../VERSION", encoding="utf-8") as f: + match = re.search(r"([0-9.]+)[^0-9.]+", f.read()) if not match: raise ValueError("VERSION not found!") version_number = match[1]