Skip to content

Commit b7cb5c7

Browse files
committed
Minor cleanup
1 parent 7b28fb3 commit b7cb5c7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

openandroidinstaller/installer_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def from_file(cls, path):
5252
raw_steps = config["steps"]
5353
metadata = config["metadata"]
5454
except yaml.YAMLError as exc:
55-
print(exc)
55+
logger.info(exc)
5656

5757
steps = [Step(**raw_step) for raw_step in raw_steps]
5858
return cls(steps, metadata)

openandroidinstaller/openandroidinstaller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import sys
1717
import webbrowser
1818
from pathlib import Path
19-
from subprocess import STDOUT, CalledProcessError, call, check_output
2019
from time import sleep
2120
from typing import Callable, Optional
2221
from loguru import logger
@@ -52,8 +51,9 @@
5251
from tool_utils import call_tool_with_command, search_device
5352
from widgets import call_button, confirm_button, get_title
5453

54+
5555
# Toggle to True for development purposes
56-
DEVELOPMENT = False
56+
DEVELOPMENT = False
5757
DEVELOPMENT_CONFIG = "sargo" # "a3y17lte" # "sargo"
5858

5959

0 commit comments

Comments
 (0)