From 942f19fefef996a1c11d7da985c39ef2409bbb33 Mon Sep 17 00:00:00 2001 From: b3yond Date: Sat, 6 Oct 2018 11:58:08 +0200 Subject: [PATCH] comments, because the use of this file is not obvious. --- tfglobals.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tfglobals.py b/tfglobals.py index ded3bb1..32282b5 100644 --- a/tfglobals.py +++ b/tfglobals.py @@ -1,3 +1,10 @@ from time import time +""" +This file is for shared global variables. They only stay during runtime. + +For reference: +https://stackoverflow.com/questions/15959534/visibility-of-global-variables-in-imported-modules +""" + last_twitter_request = time()