Skip to content

Commit f233e44

Browse files
committed
Removed a couple empty .format() calls
1 parent cd73cc8 commit f233e44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_completion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def test_cmd2_help_completion_nomatch(cmd2_app):
275275
def test_set_allow_style_completion(cmd2_app):
276276
"""Confirm that completing allow_style presents AllowStyle strings"""
277277
text = ''
278-
line = 'set allow_style'.format()
278+
line = 'set allow_style'
279279
endidx = len(line)
280280
begidx = endidx - len(text)
281281

@@ -289,7 +289,7 @@ def test_set_allow_style_completion(cmd2_app):
289289
def test_set_bool_completion(cmd2_app):
290290
"""Confirm that completing a boolean Settable presents true and false strings"""
291291
text = ''
292-
line = 'set debug'.format()
292+
line = 'set debug'
293293
endidx = len(line)
294294
begidx = endidx - len(text)
295295

0 commit comments

Comments
 (0)