From 978f1a0190d0d396a9e0cbfde57750ff58ab1b9e Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Wed, 29 Mar 2023 16:01:44 -0400 Subject: [PATCH] Add missing `from __future__ import annotations` --- heudiconv/cli/run.py | 2 +- heudiconv/convert.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/heudiconv/cli/run.py b/heudiconv/cli/run.py index f149a1b9..e8d8b57b 100644 --- a/heudiconv/cli/run.py +++ b/heudiconv/cli/run.py @@ -1,5 +1,5 @@ #!/usr/bin/env python - +from __future__ import annotations import logging import os import sys diff --git a/heudiconv/convert.py b/heudiconv/convert.py index 652abb94..934b6c83 100644 --- a/heudiconv/convert.py +++ b/heudiconv/convert.py @@ -1,3 +1,5 @@ +from __future__ import annotations + __docformat__ = "numpy" import filelock