Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
Ignore specific flake8 errors for unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Jan 12, 2017
1 parent e7d0633 commit 663b5d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions foxpuppet/windows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.

from foxpuppet.windows.base import BaseWindow # noqa
from foxpuppet.windows.browser import BrowserWindow # noqa
from foxpuppet.windows.manager import WindowManager # noqa
from foxpuppet.windows.base import BaseWindow # noqa: F401
from foxpuppet.windows.browser import BrowserWindow # noqa: F401
from foxpuppet.windows.manager import WindowManager # noqa: F401

0 comments on commit 663b5d4

Please sign in to comment.