From c06567de74bcac39e10c91c2c1f4623de3aa799e Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Thu, 2 Nov 2017 14:17:17 -0400 Subject: [PATCH] Added some comments to launcher.py --- launcher.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/launcher.py b/launcher.py index 3ecb0b2..c00f8ce 100644 --- a/launcher.py +++ b/launcher.py @@ -1,6 +1,6 @@ -import os -from login import * -from actions import * +import os # TODO: change the order of all import statements to 1. standard library +from login import * # TODO: 2. related 3rd party +from actions import * # TODO: 3. local application with blank lines between def clear_screen(): IS_WINDOWS = os.name == "nt"