From 41065af2c8bab3be2a89586a38daf4795184b9cb Mon Sep 17 00:00:00 2001 From: Asherah Connor Date: Thu, 13 Jun 2024 22:18:00 +0300 Subject: [PATCH] work around black failing on fstrings. --- niar/cxxrtl.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/niar/cxxrtl.py b/niar/cxxrtl.py index 70dca4f..db84f87 100644 --- a/niar/cxxrtl.py +++ b/niar/cxxrtl.py @@ -118,8 +118,9 @@ def main(np: Project, args): cmd = [ "c++", *cxxflags, - f"-I{np.path("build")}", - f"-I{yosys.data_dir() / "include" / "backends" / "cxxrtl" / "runtime"}", + "-I" + str(np.path("build")), + "-I" + + str(yosys.data_dir() / "include" / "backends" / "cxxrtl" / "runtime"), "-c", str(cc_path), "-o",