Skip to content

Commit

Permalink
Split too long line, fixing lint #437
Browse files Browse the repository at this point in the history
  • Loading branch information
dbieber authored Feb 13, 2023
1 parent 527e3d0 commit 6e485c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fire/parser_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def testDefaultParseValueBareWordsTuple(self):

def testDefaultParseValueNestedContainers(self):
self.assertEqual(
parser.DefaultParseValue('[(A, 2, "3"), 5, {alpha: 10.2, beta: "cat"}]'),
parser.DefaultParseValue(
'[(A, 2, "3"), 5, {alpha: 10.2, beta: "cat"}]'),
[('A', 2, '3'), 5, {'alpha': 10.2, 'beta': 'cat'}])

def testDefaultParseValueComments(self):
Expand Down

0 comments on commit 6e485c9

Please sign in to comment.