Some minor fixes to keep everything PEP8 compliant

parent afdba9ab
...@@ -19,4 +19,3 @@ from .vivado import ToolVivado ...@@ -19,4 +19,3 @@ from .vivado import ToolVivado
from .quartus import ToolQuartus from .quartus import ToolQuartus
from .diamond import ToolDiamond from .diamond import ToolDiamond
from .libero import ToolLibero from .libero import ToolLibero
...@@ -12,7 +12,7 @@ def _check_synthesis_manifest(manifest_dict): ...@@ -12,7 +12,7 @@ def _check_synthesis_manifest(manifest_dict):
"""Check the manifest contains all the keys for a synthesis project""" """Check the manifest contains all the keys for a synthesis project"""
if not manifest_dict["syn_tool"]: if not manifest_dict["syn_tool"]:
logging.error( logging.error(
"syn_tool variable must be set in the top manifest.") "syn_tool variable must be set in the top manifest.")
sys.exit("Exiting") sys.exit("Exiting")
if not manifest_dict["syn_device"]: if not manifest_dict["syn_device"]:
logging.error( logging.error(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment