We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c9216f commit 82756cdCopy full SHA for 82756cd
.flake8
@@ -1,3 +1,4 @@
1
[flake8]
2
exclude = .venv build
3
max-line-length = 120
4
+per-file-ignores = */main.py: F401
.isort.cfg
@@ -1,3 +1,3 @@
[settings]
-skip = .venv
+skip = .venv, Theme.py
line_length = 120
components/view/Theme.py
@@ -1,5 +1,6 @@
import flet as ft
+from scripts import button
from components.NavigationBar import NavigationBar
5
from components.view.Tabs import Tabs
6
from components.view.tabs.BluetoothTab import BluetoothTab
helper/SystemHelper.py
@@ -18,7 +18,7 @@
18
19
class SystemHelper:
20
strip = Strip()
21
- is_party = "1" # Read button.py
+ is_party = "0"
22
23
def __init__(self):
24
self.init_party_mode()
0 commit comments