mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 13:59:02 +08:00
chore: fix uppercase
This commit is contained in:
parent
ebe60a48ea
commit
e776ae2964
@ -152,4 +152,4 @@ Deploy:
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
RUN: null
|
||||
Run: null
|
||||
|
||||
@ -152,4 +152,4 @@ Deploy:
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
RUN: null
|
||||
Run: null
|
||||
|
||||
@ -152,4 +152,4 @@ Deploy:
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
RUN: null
|
||||
Run: null
|
||||
|
||||
@ -152,4 +152,4 @@ Deploy:
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
RUN: null
|
||||
Run: null
|
||||
|
||||
@ -152,4 +152,4 @@ Deploy:
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
RUN: null
|
||||
Run: null
|
||||
|
||||
@ -152,4 +152,4 @@ Deploy:
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
RUN: null
|
||||
Run: null
|
||||
|
||||
@ -58,7 +58,7 @@ class ConfigModel:
|
||||
DpiScaling: bool = True
|
||||
Password: Optional[str] = None
|
||||
CDN: Union[str, bool] = False
|
||||
RUN: Optional[str] = None
|
||||
Run: Optional[str] = None
|
||||
|
||||
|
||||
class DeployConfig(ConfigModel):
|
||||
|
||||
@ -152,4 +152,4 @@ Deploy:
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
RUN: null
|
||||
Run: null
|
||||
|
||||
@ -1200,9 +1200,9 @@ def app():
|
||||
runs = None
|
||||
if args.run:
|
||||
runs = args.run
|
||||
elif State.deploy_config.RUN:
|
||||
elif State.deploy_config.Run:
|
||||
# TODO: refactor poor_yaml_read() to support list
|
||||
tmp = State.deploy_config.RUN.split(",")
|
||||
tmp = State.deploy_config.Run.split(",")
|
||||
runs = [l.strip("['\"]") for l in tmp if len(l)]
|
||||
instances: List[str] = runs
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user