From f5627ce4cc9e280fa942eaf3810816a398ad5fd5 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Thu, 2 Nov 2023 13:01:10 +0100 Subject: Remove `__future__` imports that are no longer necessary (#30661) These are no longer necessary as we always use Python 3. --- python/servo/command_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/servo/command_base.py') diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 752cdda4474..c8de5a8ca61 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -7,7 +7,7 @@ # option. This file may not be copied, modified, or distributed # except according to those terms. -from __future__ import print_function, annotations +from __future__ import annotations import contextlib from enum import Enum -- cgit v1.2.3