mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
python: Rewrite dict() as {}.
Suggested by the flake8-comprehensions plugin. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
a610bd19a1
commit
a276eefcfe
@@ -12,7 +12,7 @@ from zerver.openapi.openapi import validate_against_openapi_schema
|
||||
|
||||
ZULIP_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||
|
||||
TEST_FUNCTIONS: Dict[str, Callable[..., object]] = dict()
|
||||
TEST_FUNCTIONS: Dict[str, Callable[..., object]] = {}
|
||||
REGISTERED_TEST_FUNCTIONS: Set[str] = set()
|
||||
CALLED_TEST_FUNCTIONS: Set[str] = set()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user