summaryrefslogtreecommitdiff
path: root/tests/test_chain.py
diff options
context:
space:
mode:
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)}"
)