Added flask support #70 #75 #71

Merged
edraft merged 107 commits from #70 into 0.3 2022-11-05 13:55:42 +01:00
Showing only changes of commit c92403f274 - Show all commits

View File

@ -2,8 +2,6 @@ import threading
from bot_api.api import Api
from bot_api.logging.api_logger import ApiLogger
from bot_core.configuration.feature_flags_enum import FeatureFlagsEnum
from bot_core.configuration.feature_flags_settings import FeatureFlagsSettings
class ApiThread(threading.Thread):
@ -11,8 +9,7 @@ class ApiThread(threading.Thread):
def __init__(
self,
logger: ApiLogger,
api: Api,
feature_flags: FeatureFlagsSettings
api: Api
):
threading.Thread.__init__(self, daemon=True)
edraft marked this conversation as resolved
Review

Muss hier dasd feature_flags nicht assigned werden?

Muss hier dasd feature_flags nicht assigned werden?