Skip to content

Commit a7c9fb7

Browse files
committed
Minor linting tweaks that ruff wants...
1 parent b915ec8 commit a7c9fb7

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

simpleeval.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -448,17 +448,19 @@ def _eval_num(node):
448448
def _eval_str(node):
449449
if len(node.s) > MAX_STRING_LENGTH:
450450
raise IterableTooLong(
451-
"String Literal in statement is too long!"
452-
" ({0}, when {1} is max)".format(len(node.s), MAX_STRING_LENGTH)
451+
"String Literal in statement is too long! ({0}, when {1} is max)".format(
452+
len(node.s), MAX_STRING_LENGTH
453+
)
453454
)
454455
return node.s
455456

456457
@staticmethod
457458
def _eval_constant(node):
458459
if hasattr(node.value, "__len__") and len(node.value) > MAX_STRING_LENGTH:
459460
raise IterableTooLong(
460-
"Literal in statement is too long!"
461-
" ({0}, when {1} is max)".format(len(node.value), MAX_STRING_LENGTH)
461+
"Literal in statement is too long! ({0}, when {1} is max)".format(
462+
len(node.value), MAX_STRING_LENGTH
463+
)
462464
)
463465
return node.value
464466

test_simpleeval.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# pylint: disable=too-many-public-methods, missing-docstring, eval-used, too-many-lines, no-self-use, disallowed-name, unspecified-encoding
22

33
"""
4-
Unit tests for simpleeval.
5-
--------------------------
4+
Unit tests for simpleeval.
5+
--------------------------
66
7-
Most of this stuff is pretty basic.
7+
Most of this stuff is pretty basic.
88
99
"""
10+
1011
import ast
1112
import gc
1213
import operator

0 commit comments

Comments
 (0)