Skip to content

Commit

Permalink
torii.platform.asic: Fixed some minor style lints
Browse files Browse the repository at this point in the history
  • Loading branch information
lethalbit committed May 18, 2024
1 parent 0128407 commit ac0dc4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion torii/platform/asic/gf180mcu.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# SPDX-License-Identifier: BSD-3-Clause

from .openlane import OpenLANEPlatform
from .openlane import OpenLANEPlatform # noqa: F401
2 changes: 1 addition & 1 deletion torii/platform/asic/openlane.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def flow_settings(self) -> dict[str, Union[str, int, float]]:
{% endif -%}
{% endfor %}
{{get_override("add_constraints")|default("# (add_constraints placeholder)")}}
''',
''', # noqa: E501
'run_flow_{{name}}.sh': r'''
./flow.tcl {{verbose("-verbose 2")}} \
-design /design_{{name}} \
Expand Down
2 changes: 1 addition & 1 deletion torii/platform/asic/sky90.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# SPDX-License-Identifier: BSD-3-Clause

from .openlane import OpenLANEPlatform
from .openlane import OpenLANEPlatform # noqa: F401

0 comments on commit ac0dc4e

Please sign in to comment.