From ef0f263bb4e13682159b9fe2f5fdff3160e41058 Mon Sep 17 00:00:00 2001 From: dangotbanned <125183946+dangotbanned@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:24:01 +0100 Subject: [PATCH] refactor: Remove unused `__future__` import I added this while experimenting with a more complex `__getattr__`, but don't need it for anything in this version --- altair/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/altair/__init__.py b/altair/__init__.py index e68cb4978..c226c1484 100644 --- a/altair/__init__.py +++ b/altair/__init__.py @@ -1,5 +1,3 @@ -from __future__ import annotations - # ruff: noqa __version__ = "5.5.0dev"