Skip to content

Commit f9668d7

Browse files
committed
Format the code using black
1 parent c4fcd9a commit f9668d7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

python-eval-mathrepl/mathrepl.py

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

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

1814
PS1 = "mr>>"
1915

0 commit comments

Comments
 (0)