aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/editor.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/editor.py b/src/editor.py
index 214a4d7..7e02b27 100644
--- a/src/editor.py
+++ b/src/editor.py
@@ -54,8 +54,6 @@ class Jump():
'''
def __init__(self, y, x):
self.string = '\033[%i;%iH' % (y, x)
- if (y < 0) or (x < 0):
- raise Exception() ########################## ########################## ########################## ########################## ##########################
def __str__(self):
return self.string
def __call__(self):