Skip to content

Commit

Permalink
Add python 3.9 support for | operator
Browse files Browse the repository at this point in the history
  • Loading branch information
twiggler committed Oct 16, 2024
1 parent 9079bdb commit 43950be
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions acquire/tools/decrypter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import argparse
import base64
import contextlib
Expand Down
2 changes: 2 additions & 0 deletions tests/test_decryptor_funcs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from multiprocessing import Queue
from pathlib import Path
from typing import Optional
Expand Down
2 changes: 2 additions & 0 deletions tests/test_outputs_tar.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import tarfile
from pathlib import Path

Expand Down
2 changes: 2 additions & 0 deletions tests/test_outputs_zip.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import stat
import zipfile
from pathlib import Path
Expand Down

0 comments on commit 43950be

Please sign in to comment.