black: Reformat skipping string normalization.
This commit is contained in:
parent
5580c68ae5
commit
fba21bb00d
178 changed files with 6562 additions and 4469 deletions
|
@ -17,9 +17,22 @@ def write_public_streams() -> None:
|
|||
# Zephyr class names are canonicalized by first applying NFKC
|
||||
# normalization and then lower-casing server-side
|
||||
canonical_cls = unicodedata.normalize("NFKC", stream_name).lower()
|
||||
if canonical_cls in ['security', 'login', 'network', 'ops', 'user_locate',
|
||||
'mit', 'moof', 'wsmonitor', 'wg_ctl', 'winlogger',
|
||||
'hm_ctl', 'hm_stat', 'zephyr_admin', 'zephyr_ctl']:
|
||||
if canonical_cls in [
|
||||
'security',
|
||||
'login',
|
||||
'network',
|
||||
'ops',
|
||||
'user_locate',
|
||||
'mit',
|
||||
'moof',
|
||||
'wsmonitor',
|
||||
'wg_ctl',
|
||||
'winlogger',
|
||||
'hm_ctl',
|
||||
'hm_stat',
|
||||
'zephyr_admin',
|
||||
'zephyr_ctl',
|
||||
]:
|
||||
# These zephyr classes cannot be subscribed to by us, due
|
||||
# to MIT's Zephyr access control settings
|
||||
continue
|
||||
|
@ -30,6 +43,7 @@ def write_public_streams() -> None:
|
|||
f.write(json.dumps(list(public_streams)) + "\n")
|
||||
os.rename("/home/zulip/public_streams.tmp", "/home/zulip/public_streams")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
log_file = "/home/zulip/sync_public_streams.log"
|
||||
logger = logging.getLogger(__name__)
|
||||
|
@ -83,9 +97,7 @@ if __name__ == "__main__":
|
|||
last_event_id = max(last_event_id, event["id"])
|
||||
if event["type"] == "stream":
|
||||
if event["op"] == "create":
|
||||
stream_names.update(
|
||||
stream["name"] for stream in event["streams"]
|
||||
)
|
||||
stream_names.update(stream["name"] for stream in event["streams"])
|
||||
write_public_streams()
|
||||
elif event["op"] == "delete":
|
||||
stream_names.difference_update(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue