mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
flake8
This commit is contained in:
parent
572acde483
commit
c882783535
@ -96,7 +96,8 @@ def _load_appservice(hostname, as_info, config_filename):
|
|||||||
|
|
||||||
# 'url' must either be a string or explicitly null, not missing
|
# 'url' must either be a string or explicitly null, not missing
|
||||||
# to avoid accidentally turning off push for ASes.
|
# to avoid accidentally turning off push for ASes.
|
||||||
if not isinstance(as_info.get("url"), basestring) and as_info.get("url", "") is not None:
|
if (not isinstance(as_info.get("url"), basestring) and
|
||||||
|
as_info.get("url", "") is not None):
|
||||||
raise KeyError(
|
raise KeyError(
|
||||||
"Required string field or explicit null: 'url' (%s)" % (config_filename,)
|
"Required string field or explicit null: 'url' (%s)" % (config_filename,)
|
||||||
)
|
)
|
||||||
@ -140,7 +141,7 @@ def _load_appservice(hostname, as_info, config_filename):
|
|||||||
if not isinstance(p, str):
|
if not isinstance(p, str):
|
||||||
raise KeyError("Bad value for 'protocols' item")
|
raise KeyError("Bad value for 'protocols' item")
|
||||||
|
|
||||||
if as_info["url"] == None:
|
if as_info["url"] is None:
|
||||||
logger.info(
|
logger.info(
|
||||||
"(%s) Explicitly empty 'url' provided. This application service"
|
"(%s) Explicitly empty 'url' provided. This application service"
|
||||||
" will not receive events or queries.",
|
" will not receive events or queries.",
|
||||||
|
Loading…
Reference in New Issue
Block a user