From 27536358334d0780354886cfddae986859b656fe Mon Sep 17 00:00:00 2001 From: Stu Hood Date: Wed, 10 Nov 2021 14:31:40 -0800 Subject: [PATCH] Add fstring marker --- src/python/pants/backend/python/dependency_inference/rules.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/pants/backend/python/dependency_inference/rules.py b/src/python/pants/backend/python/dependency_inference/rules.py index 1029faeebfbe..3fd9fc7a6afd 100644 --- a/src/python/pants/backend/python/dependency_inference/rules.py +++ b/src/python/pants/backend/python/dependency_inference/rules.py @@ -217,8 +217,8 @@ async def infer_python_dependencies_via_imports( f"The following imports in {address} have no owners:\n\n{bullet_list(unowned_imports)}\n\n" "If you are expecting this import to be provided by your own firstparty code, ensure that it is contained within a source root. " "Otherwise if you are using a requirements file, consider adding the relevant package.\n" - "Otherwise consider declaring a `python_requirement_library` target, which can then be inferred\n" - "See {doc_url('python-third-party-dependencies')}" + "Otherwise consider declaring a `python_requirement_library` target, which can then be inferred.\n" + f"See {doc_url('python-third-party-dependencies')}" ) if raise_error: