From 5aef94c36fabd46870c3b4bcb2741bfd31130fc7 Mon Sep 17 00:00:00 2001 From: tools4origins Date: Sun, 26 Sep 2021 12:49:30 +0200 Subject: [PATCH] fix(style): Apply pycodestyle guidelines --- pysparkling/sql/expressions/dates.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pysparkling/sql/expressions/dates.py b/pysparkling/sql/expressions/dates.py index 70ee2678..f68389b3 100644 --- a/pysparkling/sql/expressions/dates.py +++ b/pysparkling/sql/expressions/dates.py @@ -35,6 +35,7 @@ def args(self): def data_type(self, schema): return DateType() + class DateAdd(Expression): pretty_name = "date_add" @@ -56,6 +57,7 @@ def args(self): def data_type(self, schema): return DateType() + class DateSub(Expression): pretty_name = "date_sub"