mirror of
https://github.com/gryf/boxpy.git
synced 2025-12-20 05:57:59 +01:00
Fixing some linting issues.
This commit is contained in:
20
box.py
20
box.py
@@ -183,20 +183,24 @@ def convert_to_mega(size):
|
|||||||
readable suffix, like M or G. Case insensitive.
|
readable suffix, like M or G. Case insensitive.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
result = None
|
||||||
|
|
||||||
if size.isnumeric():
|
if size.isnumeric():
|
||||||
return str(size)
|
result = str(size)
|
||||||
|
|
||||||
if size.lower().endswith('m') and size[:-1].isnumeric():
|
if size.lower().endswith('m') and size[:-1].isnumeric():
|
||||||
return str(size[:-1])
|
result = str(size[:-1])
|
||||||
|
|
||||||
if size.lower().endswith('g') and size[:-1].isnumeric():
|
if size.lower().endswith('g') and size[:-1].isnumeric():
|
||||||
return str(int(size[:-1]) * 1024)
|
result = str(int(size[:-1]) * 1024)
|
||||||
|
|
||||||
if size.lower().endswith('mb') and size[:-2].isnumeric():
|
if size.lower().endswith('mb') and size[:-2].isnumeric():
|
||||||
return str(size[:-2])
|
result = str(size[:-2])
|
||||||
|
|
||||||
if size.lower().endswith('gb') and size[:-2].isnumeric():
|
if size.lower().endswith('gb') and size[:-2].isnumeric():
|
||||||
return str(int(size[:-2]) * 1024)
|
result = str(int(size[:-2]) * 1024)
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
class BoxError(Exception):
|
class BoxError(Exception):
|
||||||
@@ -316,7 +320,7 @@ class Config:
|
|||||||
self.ssh_key_path = os.path.join(os.path.expanduser("~/.ssh"),
|
self.ssh_key_path = os.path.join(os.path.expanduser("~/.ssh"),
|
||||||
self.ssh_key_path)
|
self.ssh_key_path)
|
||||||
if not os.path.exists(self.ssh_key_path):
|
if not os.path.exists(self.ssh_key_path):
|
||||||
raise BoxNotFound(f'Cannot find ssh public key: {conf.key}')
|
raise BoxNotFound(f'Cannot find ssh public key: {self.key}')
|
||||||
|
|
||||||
def _set_defaults(self):
|
def _set_defaults(self):
|
||||||
conf = yaml.safe_load(USER_DATA)
|
conf = yaml.safe_load(USER_DATA)
|
||||||
@@ -416,8 +420,8 @@ class VBoxManage:
|
|||||||
|
|
||||||
if line.isnumeric():
|
if line.isnumeric():
|
||||||
return line
|
return line
|
||||||
else:
|
|
||||||
return line.split(' ')[0].strip()
|
return line.split(' ')[0].strip()
|
||||||
|
|
||||||
def get_vm_info(self):
|
def get_vm_info(self):
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user