From 94ede33b1c36a35f5c8fbaa8216d0455c0c43123 Mon Sep 17 00:00:00 2001 From: Daniel Playle Date: Mon, 2 Jul 2018 15:29:48 +0100 Subject: Reorder app.py imports When testing locally on some systems, it appears that pylint fails on the order of imports for `buildstream/_frontend/app.py`. This commit changes the order of these imports. This commit addresses issue !453. --- buildstream/_frontend/app.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/buildstream/_frontend/app.py b/buildstream/_frontend/app.py index 4675b0eb0..e2f2d0e62 100644 --- a/buildstream/_frontend/app.py +++ b/buildstream/_frontend/app.py @@ -17,17 +17,16 @@ # Authors: # Tristan Van Berkom +from contextlib import contextmanager import os import sys import resource import traceback import datetime from textwrap import TextWrapper -from contextlib import contextmanager -from blessings import Terminal - import click from click import UsageError +from blessings import Terminal # Import buildstream public symbols from .. import Scope -- cgit v1.2.1