From 04c1584bf78d088b3d0621ceb31480eff978fd41 Mon Sep 17 00:00:00 2001 From: Leodanis Pozo Ramos Date: Wed, 25 Mar 2020 11:25:01 -0400 Subject: [PATCH] Format with Black --- python-eval-mathrepl/mathrepl.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python-eval-mathrepl/mathrepl.py b/python-eval-mathrepl/mathrepl.py index d08b4be..14529ad 100644 --- a/python-eval-mathrepl/mathrepl.py +++ b/python-eval-mathrepl/mathrepl.py @@ -8,8 +8,7 @@ __version__ = "1.0" __author__ = "Leodanis Pozo Ramos" ALLOWED_NAMES = { - name: obj for name, obj in math.__dict__.items() - if not name.startswith("__") + name: obj for name, obj in math.__dict__.items() if not name.startswith("__") } PS1 = "mr>>" -- GitLab