From de2135b1e8d61e5677e4024c0b4bf2de77d4f1e8 Mon Sep 17 00:00:00 2001
From: Pierre Raybaut
Date: Fri, 2 Aug 2024 15:10:50 +0200
Subject: [PATCH] Refactor conf.py to use future annotations
---
cdl/utils/conf.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/cdl/utils/conf.py b/cdl/utils/conf.py
index 60dfc5d5..9d20b05e 100644
--- a/cdl/utils/conf.py
+++ b/cdl/utils/conf.py
@@ -4,6 +4,8 @@
DataLab Configuration utilities
"""
+from __future__ import annotations
+
import os
import os.path as osp