Skip to content

Commit 2f012e8

Browse files
authored
Format with black again
1 parent 0ebcab5 commit 2f012e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python-eval-mathrepl/mathrepl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
__author__ = "Leodanis Pozo Ramos"
99

1010
ALLOWED_NAMES = {
11-
name: obj for name, obj in math.__dict__.items() if not name.startswith(
12-
"__")
11+
k: v for k, v in math.__dict__.items() if not k.startswith("__")
1312
}
1413

1514
PS1 = "mr>>"

0 commit comments

Comments
 (0)