Skip to content

Commit

Permalink
[remote] fix serializing clocks and remove extra newline
Browse files Browse the repository at this point in the history
  • Loading branch information
kammoh committed Jun 9, 2024
1 parent d818e47 commit a39185e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xeda/flow_runner/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def translate_filename(src: DesignSource) -> str:
rtl["attributes"] = design.rtl.attributes
rtl["parameters"] = design.rtl.parameters
rtl["top"] = design.rtl.top
rtl["clocks"] = design.rtl.clocks
rtl["clocks"] = [clk.dict() for clk in design.rtl.clocks]
# FIXME add src type/attributes
tb["sources"] = [
str(remote_sources_path / translate_filename(src)) for src in design.tb.sources
Expand Down Expand Up @@ -143,7 +143,7 @@ def cb(self, data):
if data is None:
log.info("Remote channel closed.")
return
print(data)
print(data, end="")


class RemoteRunner(FlowLauncher):
Expand Down

0 comments on commit a39185e

Please sign in to comment.