Skip to content

Commit 4b51772

Browse files
authored
Correct line length problem
1 parent f9668d7 commit 4b51772

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

python-eval-mathrepl/mathrepl.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
__version__ = "1.0"
1010
__author__ = "Leodanis Pozo Ramos"
1111

12-
ALLOWED_NAMES = {name: obj for name, obj in math.__dict__.items() if "__" not in name}
12+
ALLOWED_NAMES = {
13+
name: obj
14+
for name, obj in math.__dict__.items()
15+
if "__" not in name
16+
}
1317

1418
PS1 = "mr>>"
1519

0 commit comments

Comments
 (0)