Files
zulip/zerver/lib/bugdown/arguments.py
2018-11-07 10:44:48 -08:00

7 lines
274 B
Python

from typing import Any, Dict, Optional
# We avoid doing DB queries in our markdown thread to avoid the overhead of
# opening a new DB connection. These connections tend to live longer than the
# threads themselves, as well.
db_data = None # type: Optional[Dict[str, Any]]