aboutsummaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/__init__.py b/__init__.py
deleted file mode 100644
index fef84d4..0000000
--- a/__init__.py
+++ /dev/null
@@ -1,23 +0,0 @@
-from .out import *
-
-import os
-
-
-class TermSizeSkeleton:
-
- def __init__(self):
- self.Update()
-
- def Update(self):
- self.Rows, self.Columns = map(int, os.popen('stty size', 'r').read().split())
-
- def Rows(self, Update=True):
- if Update: self.Update()
- return self.Rows
-
- def Columns(self, Update=True):
- if Update: self.Update()
- return self.Rows
-
-
-TermSize = TermSizeSkeleton()