From 1d5a361115006351264bbadfa3fd155db2f37a8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sat, 19 Mar 2022 22:58:02 +0100 Subject: [PATCH] style: isort formatting --- src/database_recoder.py | 5 +++-- src/gen.py | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/database_recoder.py b/src/database_recoder.py index ac2d9e8..6ef1928 100644 --- a/src/database_recoder.py +++ b/src/database_recoder.py @@ -1,7 +1,8 @@ -from subprocess import call +import logging from time import sleep -import numpy as np +import numpy as np +from ppadb.client import Client as AdbClient center = (1000, 500) diff --git a/src/gen.py b/src/gen.py index f1d7b31..e42b3e1 100644 --- a/src/gen.py +++ b/src/gen.py @@ -1,7 +1,8 @@ -from time import sleep -from ppadb.client import Client as AdbClient -import re import logging +import re +from time import sleep + +from ppadb.client import Client as AdbClient REGEX_USER = re.compile(r"UserInfo\{([0-9]*):([a-zA-Z ]*):.*") REGEX_FOCUS = re.compile(r"mFocused.*com.Psyonix.RL2D.*")