From c5cf8fb9cc3e2feef985277ce201f6c9867826b5 Mon Sep 17 00:00:00 2001 From: you-n-g Date: Fri, 29 Apr 2022 17:16:06 +0800 Subject: [PATCH] fix est_sepdf.py with black --- tests/misc/test_sepdf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/misc/test_sepdf.py b/tests/misc/test_sepdf.py index b8daa35f5..0caa92822 100644 --- a/tests/misc/test_sepdf.py +++ b/tests/misc/test_sepdf.py @@ -53,7 +53,8 @@ class SepDF(unittest.TestCase): # it will not raise error, and df will be an empty dataframe del sdf["g1"] - del sdf["g2"] # sdf should support deleting all the columns + del sdf["g2"] # sdf should support deleting all the columns + if __name__ == "__main__": unittest.main()