aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2017-09-30 20:33:08 +0000
committerMike Crute <mike@crute.us>2017-09-30 23:09:18 +0000
commit1e9bc9d34c210925004eeeea4533a14185078db6 (patch)
treeba09a51e11d2b678b745bd0f0d3eb0e1642067a5
parent878986701f999ca5f4b6de7ac7c3f9691af4c1b9 (diff)
downloadpydora-1e9bc9d34c210925004eeeea4533a14185078db6.tar.bz2
pydora-1e9bc9d34c210925004eeeea4533a14185078db6.tar.xz
pydora-1e9bc9d34c210925004eeeea4533a14185078db6.zip
Remove duplicated and unused function
-rw-r--r--pydora/utils.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/pydora/utils.py b/pydora/utils.py
index 9a6d2a1..faa18e5 100644
--- a/pydora/utils.py
+++ b/pydora/utils.py
@@ -102,13 +102,6 @@ class Screen(object):
102 print(Colors.red("Invalid Input!")) 102 print(Colors.red("Invalid Input!"))
103 103
104 104
105def clear_screen():
106 """Clear the terminal
107 """
108 sys.stdout.write("\x1b[2J\x1b[H")
109 sys.stdout.flush()
110
111
112def iterate_forever(func, *args, **kwargs): 105def iterate_forever(func, *args, **kwargs):
113 """Iterate over a finite iterator forever 106 """Iterate over a finite iterator forever
114 107