From 7271fc8a7ba44feacea38b7e8d5a1974845670cb Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Sun, 7 May 2017 20:45:24 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 to import.py. --- zerver/management/commands/import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/management/commands/import.py b/zerver/management/commands/import.py index 50ad66d093..916320993c 100644 --- a/zerver/management/commands/import.py +++ b/zerver/management/commands/import.py @@ -18,7 +18,7 @@ import sys import ujson from typing import Any -Model = Any # TODO: make this mypy type more specific +Model = Any # TODO: make this mypy type more specific class Command(BaseCommand): help = """Import Zulip database dump files into a fresh Zulip instance.