From 144bcdf72b594a49b633c5d2f0d13b44a1c17340 Mon Sep 17 00:00:00 2001
From: Neda Moeini <neda.moeini@geant.org>
Date: Tue, 26 Nov 2024 13:14:34 +0100
Subject: [PATCH] Fix docs error.

---
 gso/utils/helpers.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gso/utils/helpers.py b/gso/utils/helpers.py
index c4a5a3d1..59e6f560 100644
--- a/gso/utils/helpers.py
+++ b/gso/utils/helpers.py
@@ -267,7 +267,7 @@ def generate_unique_vc_id(max_attempts: int = 100) -> VC_ID | None:
     """
 
     def create_vc_id() -> str:
-        """Generate an 8-digit VC_ID starting with "11"."""
+        """Generate an 8-digit VC_ID starting with '11'."""
         return f"11{random.randint(100000, 999999)}"  # noqa: S311
 
     for _ in range(max_attempts):
-- 
GitLab