Skip to content

Commit c4bac35

Browse files
authored
Merge pull request #6 from jesuscast/bugfix/pep585-backwards-compatibility-python-3.7
Make PEP585 type annotations backwards compatible with Python 3.7+
2 parents 1a22af3 + e274ad9 commit c4bac35

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/dotenv_vault/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import os
24
import logging
35
from typing import (IO, Optional,Union)

src/dotenv_vault/vault.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import os
24
import io
35

0 commit comments

Comments
 (0)