Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsAsplund committed Nov 5, 2023
1 parent c140474 commit d591321
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ deps=
coverage: pylint
coverage: mypy
coverage: Pygments
coverage: setuptools
docs: docutils
docs: furo
docs: sphinx
Expand Down
8 changes: 4 additions & 4 deletions vunit/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@ def _failed_to_find_primary_design_unit_in_library(source_file_name, primary_des
As shown below:
{num-1}| {content[num-2].rstrip()}
{num - 1}| {content[num - 2].rstrip()}
{num}| {line.rstrip()}
{num+1}|+ {line.split('=')[0].rstrip()}.add_vhdl_builtins() # Add this line!
{num+2}| {content[num].rstrip()}
{num+3}| {content[num+1].rstrip()}
{num + 1}|+ {line.split('=')[0].rstrip()}.add_vhdl_builtins() # Add this line!
{num + 2}| {content[num].rstrip()}
{num + 3}| {content[num + 1].rstrip()}
"""
hline = "=" * 75
print(hline)
Expand Down

0 comments on commit d591321

Please sign in to comment.