From c26ae236bee9b9b94975a828ce313a51a7cb7177 Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Fri, 3 Jan 2025 09:47:55 +0300 Subject: [PATCH] Change ordering of imports --- src/gourmand/prefs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gourmand/prefs.py b/src/gourmand/prefs.py index 9b2a5f23..d662119a 100644 --- a/src/gourmand/prefs.py +++ b/src/gourmand/prefs.py @@ -1,7 +1,8 @@ import shutil +import sys from pathlib import Path from typing import Any, Optional -import sys + if sys.version_info >= (3, 11): import tomllib.load as tom_load