Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Fix: footprint_file optional items
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-iteng committed Sep 23, 2024
1 parent 50a922f commit 5098028
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/faebryk/libs/kicad/fileformats.py
Original file line number Diff line number Diff line change
Expand Up @@ -1164,8 +1164,8 @@ class C_group:
class C_kicad_footprint_file(SEXP_File):
@dataclass(kw_only=True)
class C_footprint_in_file(C_footprint):
descr: str
tags: list[str]
descr: Optional[str] = None
tags: Optional[list[str]] = None
version: int = field(**sexp_field(assert_value=20240108), default=20240108)
generator: str
generator_version: str
Expand Down

0 comments on commit 5098028

Please sign in to comment.