summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <daniel.silverstone@codethink.co.uk>2018-10-24 09:58:45 +0100
committerDaniel Silverstone <daniel.silverstone@codethink.co.uk>2018-10-25 15:43:52 +0100
commit247b9fa87de2ff8c5409a89add61e2a9c2b2b46d (patch)
treecf9c6d6cf9490beb9653d681b0f40a68bfe4229c
parent447780b091afb7182e79ec5477e0da6c81c541b5 (diff)
downloadbuildstream-247b9fa87de2ff8c5409a89add61e2a9c2b2b46d.tar.gz
_frontend/status.py: Reorder imports
The `curses` import is "standard" whereas `click` is not. As such, despite alphabetical order normally being the rule, `curses` must come before `click`. Signed-off-by: Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-rw-r--r--buildstream/_frontend/status.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_frontend/status.py b/buildstream/_frontend/status.py
index fd1a5acf1..2e7213e78 100644
--- a/buildstream/_frontend/status.py
+++ b/buildstream/_frontend/status.py
@@ -18,8 +18,8 @@
# Tristan Van Berkom <tristan.vanberkom@codethink.co.uk>
import os
import sys
-import click
import curses
+import click
# Import a widget internal for formatting time codes
from .widget import TimeCode