Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Feb 5, 2025
1 parent e165836 commit 139aa93
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/ezdxf/entities/mleader.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ def __init__(self) -> None:
def load(cls, context: list[Union[DXFTag, list]]) -> MLeaderContext:
assert context[0] == (START_CONTEXT_DATA, CONTEXT_STR)
ctx = cls()
content = None
content: None | MTextData | BlockData = None
for tag in context:
if isinstance(tag, list): # Leader()
ctx.leaders.append(LeaderData.load(tag))
Expand All @@ -757,8 +757,8 @@ def load(cls, context: list[Union[DXFTag, list]]) -> MLeaderContext:
content = MTextData()
ctx.mtext = content
elif code == 296 and value == 1:
content = BlockData() # type: ignore
ctx.block = content # type: ignore
content = BlockData()
ctx.block = content
else:
name = MLeaderContext.ATTRIBS.get(code)
if name:
Expand Down Expand Up @@ -989,9 +989,7 @@ def transform(self, wcs: WCSTransform) -> None:
self.column_width *= scale
self.column_gutter_width *= scale
self.column_sizes = [size * scale for size in self.column_sizes]
self.default_content = scale_mtext_inline_commands(
self.default_content, scale
)
self.default_content = scale_mtext_inline_commands(self.default_content, scale)

def apply_conversion_factor(self, conversion_factor: float):
# conversion_factor: convert from an old scaling to a new scaling
Expand Down

0 comments on commit 139aa93

Please sign in to comment.