mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
mypy: Remove a bunch of now-unnecessary type: ignore annotations.
Since mypy and typeshed have advanced a lot over the last several months, we no longer need these `type: ignore` annotations.
This commit is contained in:
@@ -11,5 +11,5 @@ BASE_DIR = dirname(dirname(dirname(abspath(__file__))))
|
||||
activate_this = os.path.join(BASE_DIR, "zulip-venv", "bin", "activate_this.py")
|
||||
if os.path.exists(activate_this):
|
||||
# this file will exist in production
|
||||
exec(open(activate_this).read(), {}, dict(__file__=activate_this)) # type: ignore # https://github.com/python/mypy/issues/1577
|
||||
exec(open(activate_this).read(), {}, dict(__file__=activate_this))
|
||||
sys.path.append(BASE_DIR)
|
||||
|
||||
Reference in New Issue
Block a user