Removed absolut imports and used relative paths to preserve library usage

See #1520
This commit is contained in:
Anton Hvornum 2022-11-17 13:11:18 +01:00 committed by GitHub
parent 9718c64ca7
commit 126f56169d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ from dataclasses import dataclass, field
from enum import Enum, auto
from typing import Optional, List, Dict, TYPE_CHECKING, Any
from archinstall.lib.hsm.fido import Fido2Device
from ..hsm.fido import Fido2Device
if TYPE_CHECKING:
_: Any