Forgot some imports that didn't show up on a static run without going through a few of the menu's

This commit is contained in:
Anton Hvornum 2021-10-22 20:55:00 +02:00
parent 3ec8df9753
commit 2ef793b76a
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
2 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,6 @@
import json
from ..output import log from ..output import log
from ..general import SysCommand
class BlockDevice: class BlockDevice:
def __init__(self, path, info=None): def __init__(self, path, info=None):

View File

@ -1,5 +1,6 @@
import re import re
import json import json
from .blockdevice import BlockDevice
from ..exceptions import SysCallError from ..exceptions import SysCallError
from ..general import SysCommand from ..general import SysCommand
from ..output import log from ..output import log