Skip to content

Commit 830fc67

Browse files
committed
fetch: remove unneeded f-strings
1 parent 8ed545e commit 830fc67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

acbs/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def tarball_processor(package: ACBSPackageInfo, index: int, source_name: str) ->
142142
def pypi_fetch(info: ACBSSourceInfo, source_location: str, name: str) -> Optional[ACBSSourceInfo]:
143143
# https://warehouse.pypa.io/api-reference/json.html#release
144144
api = f"/pypi/{info.url}/{info.revision}/json"
145-
logging.info(f"Querying PyPI API endpoint for source URL...")
145+
logging.info("Querying PyPI API endpoint for source URL...")
146146
conn = http.client.HTTPSConnection("pypi.org")
147147
conn.request("GET", api)
148148
response = conn.getresponse()

0 commit comments

Comments
 (0)