From 6e65350c8e5107ef06b3de9b8dfa4db734b72f65 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Thu, 28 Mar 2024 18:54:25 +0100
Subject: [PATCH] [rc] Fix qa

---
 src/clapper/rc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/clapper/rc.py b/src/clapper/rc.py
index f709038..dfbd7c4 100644
--- a/src/clapper/rc.py
+++ b/src/clapper/rc.py
@@ -156,7 +156,7 @@ class UserDefaults(collections.abc.MutableMapping):
                 if not isinstance(base, dict):
                     raise KeyError(
                         f"You are trying to set configuration key "
-                        f"{k}, but {'.'.join(parts[:(n+1)])} is already a "
+                        f"{k}, but {'.'.join(parts[:(n + 1)])} is already a "
                         f"variable set in the file, and not a section"
                     )
             base[parts[-1]] = v
-- 
GitLab