diff options
author | Helmut Grohne <helmut@subdivi.de> | 2016-12-15 10:21:42 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2016-12-15 10:21:42 +0100 |
commit | 784ef25cd706fbd17270e1711977dfce140255cb (patch) | |
tree | 87e7e4fcfd37de02a7a4136441501b1688da7147 | |
parent | ef0055e5e245d331de48a62c42a85d2886d335b1 (diff) | |
download | tcvt-784ef25cd706fbd17270e1711977dfce140255cb.tar.gz |
remove unused inch method
The last user got removed with 458ccd1cdc60 ("fix rendering of alternate
font for ncmpc").
-rwxr-xr-x | tcvt.py | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -108,9 +108,6 @@ class Simple: def deleteln(self): self.screen.deleteln() - def inch(self): - return self.screen.inch() - class BadWidth(Exception): pass @@ -250,9 +247,6 @@ class Columns: for i in range(index + 1, self.numcolumns): self.scroll_up(i) - def inch(self): - return self.curwin.inch(self.curypos, self.curxpos) - def acs_map(): """call after curses.initscr""" # can this mapping be obtained from curses? |