Skip to content

Commit

Permalink
Apply ruff/flake8-implicit-str-concat rule ISC001
Browse files Browse the repository at this point in the history
ISC001 Implicitly concatenated string literals on one line
  • Loading branch information
DimitriPapadopoulos committed Sep 26, 2024
1 parent f99343a commit 1ad9819
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


def test_tabulate_formats():
"API: tabulate_formats is a list of strings" ""
"API: tabulate_formats is a list of strings"
supported = tabulate_formats
print("tabulate_formats = %r" % supported)
assert type(supported) is list
Expand All @@ -35,7 +35,7 @@ def _check_signature(function, expected_sig):


def test_tabulate_signature():
"API: tabulate() type signature is unchanged" ""
"API: tabulate() type signature is unchanged"
assert type(tabulate) is type(lambda: None) # noqa
expected_sig = [
("tabular_data", _empty),
Expand All @@ -61,7 +61,7 @@ def test_tabulate_signature():


def test_simple_separated_format_signature():
"API: simple_separated_format() type signature is unchanged" ""
"API: simple_separated_format() type signature is unchanged"
assert type(simple_separated_format) is type(lambda: None) # noqa
expected_sig = [("separator", _empty)]
_check_signature(simple_separated_format, expected_sig)

0 comments on commit 1ad9819

Please sign in to comment.