enable annotations=None by default

This commit is contained in:
Jan Petykiewicz 2026-04-02 15:56:42 -07:00
commit b6ee0d4929
4 changed files with 45 additions and 3 deletions

View file

@ -103,7 +103,7 @@ class Ref(
new._scale = scale
new._mirrored = mirrored
new._repetition = repetition
new._annotations = annotations if annotations is not None else {}
new._annotations = annotations
return new
def __copy__(self) -> 'Ref':