From bdba74a1955e352792f0a52e11449a9522ff4a0b Mon Sep 17 00:00:00 2001 From: Jakob Cornell Date: Fri, 5 Nov 2021 11:07:01 -0500 Subject: [PATCH] Fix Python 3.7 compatibility problem --- src/disk_jumble/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/disk_jumble/db.py b/src/disk_jumble/db.py index 9e88108..34c24b6 100644 --- a/src/disk_jumble/db.py +++ b/src/disk_jumble/db.py @@ -1,3 +1,4 @@ +from __future__ import annotations from dataclasses import dataclass from typing import Iterable, Mapping, Optional import datetime as dt -- 2.30.2