Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.

Commit 21d2052

Browse files
committed
Network parser Fix B903
1 parent 1fa918f commit 21d2052

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

camelot/parsers/network.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class TextLine:
4646
The y-coordinate of the top edge of the text line.
4747
"""
4848

49+
__slots__ = ("x0", "y0", "x1", "y1")
50+
4951
def __init__(self, x0: float, y0: float, x1: float, y1: float):
5052
self.x0 = x0
5153
self.y0 = y0

0 commit comments

Comments
 (0)