Skip to content

Commit fdf3f5a

Browse files
committed
fixed bug in get_size
1 parent 082c8e2 commit fdf3f5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fluepdot/fluepdot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def post_time(self) -> None:
6060
def get_size(self) -> tuple[int, int]:
6161
frame = self.get_frame()
6262
self.width = len(frame[0])
63-
self.height = len(frame) - 1
63+
self.height = len(frame)
6464
return self.width, self.height
6565

6666
def get_frame(self) -> List[str]:

0 commit comments

Comments
 (0)