Skip to content

Commit

Permalink
Fix Union syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
nealkruis committed May 29, 2024
1 parent 812107c commit 5a5e79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lattice/lattice.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class Lattice: # pylint:disable=R0902
def __init__(
self,
root_directory: Path = Path.cwd(),
build_directory: Union[Path | None] = None,
build_directory: Union[Path, None] = None,
build_output_directory_name: Path = Path(".lattice"),
build_validation: bool = True,
) -> None:
Expand Down

0 comments on commit 5a5e79b

Please sign in to comment.