Skip to content

Commit 949fec4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 44901e1 commit 949fec4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_items.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,9 +1013,9 @@ def add_table(parent, name):
10131013
def test_removal_of_arrayitem_with_extra_whitespace():
10141014
expected = 'x = [\n "bar",\n]'
10151015
doc = parse('x = [\n "foo" ,#spam\n "bar",\n]')
1016-
x = doc['x']
1016+
x = doc["x"]
10171017
assert isinstance(x, Array)
1018-
x.remove('foo')
1018+
x.remove("foo")
10191019
docstr = doc.as_string()
10201020
parse(docstr)
10211021
assert docstr == expected

0 commit comments

Comments
 (0)