From bd35b13f73d1e69cc6a4cbe0a083c79f743751f2 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 3 Feb 2025 19:15:34 +0100 Subject: [PATCH] future --- rwx/grub/__init__.py | 2 ++ rwx/ps/__init__.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/rwx/grub/__init__.py b/rwx/grub/__init__.py index 572b13e..aa208c3 100644 --- a/rwx/grub/__init__.py +++ b/rwx/grub/__init__.py @@ -1,5 +1,7 @@ """Wrap GRUB commands.""" +from __future__ import annotations + from rwx import cmd, ps cmd.need("grub-mkimage") diff --git a/rwx/ps/__init__.py b/rwx/ps/__init__.py index 81d2320..3bef50d 100644 --- a/rwx/ps/__init__.py +++ b/rwx/ps/__init__.py @@ -1,5 +1,7 @@ """Handle processes.""" +from __future__ import annotations + import subprocess from rwx import Object, txt