From 113b7e98688fdbb83cd61612b2f1ef5678c13d48 Mon Sep 17 00:00:00 2001 From: Asgeir Nyvoll Date: Fri, 26 Jan 2024 08:21:22 +0100 Subject: [PATCH] support python 3.11 and 3.12 --- webviz_config/themes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webviz_config/themes/__init__.py b/webviz_config/themes/__init__.py index 4143d13f..32245655 100644 --- a/webviz_config/themes/__init__.py +++ b/webviz_config/themes/__init__.py @@ -8,7 +8,7 @@ __all__ = ["installed_themes"] -if sys.version_info < (3,10,0): +if sys.version_info < (3, 10, 0): for entry_point in entry_points().get("webviz_config_themes", []): theme = entry_point.load()