aboutsummaryrefslogtreecommitdiffstats
path: root/vt100
diff options
context:
space:
mode:
Diffstat (limited to 'vt100')
-rw-r--r--vt100/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vt100/__init__.py b/vt100/__init__.py
index 4e1a192..2161866 100644
--- a/vt100/__init__.py
+++ b/vt100/__init__.py
@@ -75,4 +75,4 @@ class vt100(object):
)
def cell(self, x, y):
- return cast(vt100_raw.cell_at(self.vt, x, y), vt100_cell)
+ return vt100_cell.from_address(vt100_raw.cell_at(self.vt, x, y))