freemt commited on
Commit
8278435
·
1 Parent(s): e815598

Update interface flagging='never'

Browse files
Files changed (1) hide show
  1. radiobee/__main__.py +16 -15
radiobee/__main__.py CHANGED
@@ -2,10 +2,13 @@
2
  # pylint: disable=invalid-name, too-many-arguments, unused-argument, redefined-builtin, unused-import, wrong-import-position, too-many-locals, too-many-statements
3
  from typing import Any, Tuple, Optional, Union # noqa
4
 
 
5
  import sys
6
  from pathlib import Path # noqa
7
- import subprocess as sp
8
- import shlex
 
 
9
  import platform
10
  import signal
11
  from random import randint
@@ -111,11 +114,9 @@ if __name__ == "__main__":
111
  # debug = True
112
  share = False
113
 
114
- # set UTC+8, probably wont work in hf spaces, no permission
115
- try:
116
- sp.check_output(shlex.split("ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime"))
117
- except Exception as exc:
118
- logger.error(" set timezonef failed: %s", exc)
119
  else:
120
  server_name = "127.0.0.1"
121
  share = False
@@ -485,15 +486,15 @@ if __name__ == "__main__":
485
  # theme="darkgrass",
486
  theme="grass",
487
  layout="vertical", # horizontal unaligned
488
- allow_flagging="auto", # "manual"
489
- flagging_options=[
490
- "fatal",
491
- "bug",
492
- "brainstorm",
493
- "excelsior",
494
- ], # "paragon"],
495
  css=f"{css_image} {css_input_file} {css_output_file}",
496
- # enable_queue=True,
497
  )
498
 
499
  iface.launch(
 
2
  # pylint: disable=invalid-name, too-many-arguments, unused-argument, redefined-builtin, unused-import, wrong-import-position, too-many-locals, too-many-statements
3
  from typing import Any, Tuple, Optional, Union # noqa
4
 
5
+ import os
6
  import sys
7
  from pathlib import Path # noqa
8
+
9
+ # import subprocess as sp
10
+ # import shlex
11
+ import time
12
  import platform
13
  import signal
14
  from random import randint
 
114
  # debug = True
115
  share = False
116
 
117
+ os.environ["TZ"] = "Asia/Shanghai"
118
+ if sys.platform not in ["win32"]:
119
+ time.tzset()
 
 
120
  else:
121
  server_name = "127.0.0.1"
122
  share = False
 
486
  # theme="darkgrass",
487
  theme="grass",
488
  layout="vertical", # horizontal unaligned
489
+ allow_flagging="never", # "manual" "never" "auto"
490
+ # flagging_options=[
491
+ # "fatal",
492
+ # "bug",
493
+ # "brainstorm",
494
+ # "excelsior",
495
+ # ], # "paragon"],
496
  css=f"{css_image} {css_input_file} {css_output_file}",
497
+ # enable_queue=True, # moved to launch
498
  )
499
 
500
  iface.launch(