2025-12-01
This commit is contained in:
@@ -16,16 +16,15 @@
|
||||
#
|
||||
# ##### END GPL LICENSE BLOCK #####
|
||||
|
||||
from collections import deque
|
||||
from logging import INFO, WARN
|
||||
from os import environ
|
||||
from subprocess import Popen
|
||||
from typing import Optional
|
||||
from typing import Any, Optional
|
||||
|
||||
from . import datas
|
||||
|
||||
|
||||
CLIENT_VERSION = "v1.5.0"
|
||||
CLIENT_VERSION = "v1.7.0"
|
||||
CLIENT_ACCESSIBLE = False
|
||||
"""Is Client accessible? Can add-on access it and call stuff which uses it?"""
|
||||
CLIENT_RUNNING = False
|
||||
@@ -42,7 +41,7 @@ DATA: dict = { # TODO: move these
|
||||
"asset comments": {},
|
||||
}
|
||||
|
||||
TABS = {
|
||||
TABS: dict[str, Any] = {
|
||||
"active_tab": 0, # Index of currently active tab
|
||||
"tabs": [ # List of all tabs
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user