Skip to content

Commit

Permalink
fmt: run black 24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Feb 24, 2024
1 parent ab56d3f commit 6cd12cb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions vunit/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,11 @@ def _add_data_types(self, external=None):

for key in ["string", "integer_vector"]:
self._add_files(
pattern=str(VHDL_PATH / "data_types" / "src" / "api" / f"external_{key!s}_pkg.vhd")
if external is None or key not in external or not external[key] or external[key] is True
else external[key],
pattern=(
str(VHDL_PATH / "data_types" / "src" / "api" / f"external_{key!s}_pkg.vhd")
if external is None or key not in external or not external[key] or external[key] is True
else external[key]
),
allow_empty=False,
)

Expand Down

0 comments on commit 6cd12cb

Please sign in to comment.