From bae00eb72b0c7fd4b5d36ad72feefdc842989c61 Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral <38422348+umarcor@users.noreply.github.com> Date: Wed, 28 Sep 2022 22:05:44 +0100 Subject: [PATCH] f4pga/flows/common: update docstring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Krzysztof BoroĊ„ski <94375110+kboronski-ant@users.noreply.github.com> --- f4pga/flows/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/f4pga/flows/common.py b/f4pga/flows/common.py index 4085562..031b034 100644 --- a/f4pga/flows/common.py +++ b/f4pga/flows/common.py @@ -66,7 +66,7 @@ def with_qualifier(name: str, q: str) -> str: def resolve_modstr(modstr: str): """ - Resolves module location from modstr. + Resolves module location given its name. """ modpath = Path(__file__).resolve().parent / f"modules/{modstr}.py" if not modpath.exists():