From 74761db7a38a0eb81fc5b5b246f4ea2f2065fe9d Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Tue, 25 May 2021 21:40:10 +0800 Subject: [PATCH] Fix lint error --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 77b38b640..99e501d9f 100644 --- a/setup.py +++ b/setup.py @@ -913,7 +913,7 @@ class PySpecCommand(Command): if not self.dry_run: with open(os.path.join(self.out_dir, '__init__.py'), 'w') as out: # `mainnet` is the default spec. - out.write("from . import mainnet as spec\n") + out.write("from . import mainnet as spec # noqa:F401\n") class BuildPyCommand(build_py):