summaryrefslogtreecommitdiff
path: root/tests/test_chain.py
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-04-19 23:54:14 -0700
committerDavid Lord <davidism@gmail.com>2020-04-20 07:12:53 -0700
commit9897d81d0830f2048360cbd45993de1b37ce7371 (patch)
tree1ae0d18e075740b808c69167e97583fde9dd55e3 /tests/test_chain.py
parentb444e6355ec50417546f42138bb833d1e9e8b306 (diff)
downloadclick-9897d81d0830f2048360cbd45993de1b37ce7371.tar.gz
f-strings everywhere
Diffstat (limited to 'tests/test_chain.py')
-rw-r--r--tests/test_chain.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_chain.py b/tests/test_chain.py
index cf9b198..0462779 100644
--- a/tests/test_chain.py
+++ b/tests/test_chain.py
@@ -7,9 +7,8 @@ import click
def debug():
click.echo(
- "{}={}".format(
- sys._getframe(1).f_code.co_name, "|".join(click.get_current_context().args)
- )
+ f"{sys._getframe(1).f_code.co_name}"
+ f"={'|'.join(click.get_current_context().args)}"
)