Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
sft-managed authored and sft-managed committed Aug 16, 2021
1 parent 6f20728 commit 94df215
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions python/cudf/cudf/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -6125,9 +6125,7 @@ def is_quarter_start(self):

result = ((day == cudf.Scalar(1)) & first_month).fillna(False)
return Series._from_data(
{None: result},
index=self.series._index,
name=self.series.name,
{None: result}, index=self.series._index, name=self.series.name,
)

@property
Expand Down Expand Up @@ -6175,9 +6173,7 @@ def is_quarter_end(self):

result = ((day == last_day) & last_month).fillna(False)
return Series._from_data(
{None: result},
index=self.series._index,
name=self.series.name,
{None: result}, index=self.series._index, name=self.series.name,
)

@property
Expand Down

0 comments on commit 94df215

Please sign in to comment.