Skip to content

Commit 1274cbc

Browse files
committed
removed unnecessary f-strings
1 parent 943e30b commit 1274cbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

databusclient/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def deploy(version_id, title, abstract, description, license_url, apikey,
5454
if invalid:
5555
raise click.UsageError(f"The following input files or folders do not exist: {', '.join(invalid)}")
5656

57-
click.echo(f"[MODE] Upload & Deploy to DBpedia Databus via Nextcloud")
57+
click.echo("[MODE] Upload & Deploy to DBpedia Databus via Nextcloud")
5858
click.echo(f"→ Uploading to: {remote}:{path}")
5959
metadata = upload.upload_to_nextcloud(inputs, remote, path, webdav_url)
6060
client.deploy_from_metadata(metadata, version_id, title, abstract, description, license_url, apikey)
@@ -78,7 +78,7 @@ def deploy(version_id, title, abstract, description, license_url, apikey,
7878
+ "\nExpected format example:\n"
7979
"https://example.com/file.ttl|format=ttl|gzip|abcdef123456789:12345"
8080
)
81-
click.echo(f"[MODE] Classic deploy with distributions")
81+
click.echo("[MODE] Classic deploy with distributions")
8282
dataid = client.create_dataset(version_id, title, abstract, description, license_url, inputs)
8383
client.deploy(dataid=dataid, api_key=apikey)
8484
return

0 commit comments

Comments
 (0)