1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-01 12:45:34 +00:00

fix mypy complaints

This commit is contained in:
Thomas Waldmann 2024-01-02 20:57:42 +01:00
parent 6720ab3aab
commit e1fbd7d42e
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -1,5 +1,5 @@
import os
from typing import Optional
from typing import Optional, List
import pytest
@ -89,7 +89,7 @@ def set_env_variables():
class ArchiverSetup:
EXE: str = None # python source based
FORK_DEFAULT = False
BORG_EXES = []
BORG_EXES: List[str] = []
def __init__(self):
self.archiver = None