Skip to content
Snippets Groups Projects
Commit 46961c13 authored by Daniel Silverstone's avatar Daniel Silverstone
Browse files

_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: default avatarDaniel Silverstone <daniel.silverstone@codethink.co.uk>
parent 1b9ce37a
No related branches found
No related tags found
Loading
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment