From 8bf59dc0f7f76a0294e5f805170c7ad2a992459a Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Mon, 19 Feb 2018 22:17:54 -0800 Subject: [PATCH] Fixed LINT issue --- pandas/core/groupby.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pandas/core/groupby.py b/pandas/core/groupby.py index 0f4bb16c01a563..d3e9f88272c719 100644 --- a/pandas/core/groupby.py +++ b/pandas/core/groupby.py @@ -1919,7 +1919,6 @@ def shift(self, periods=1, freq=None, axis=0): self.grouper, needs_ngroups=True, nperiods=periods) - @Substitution(name='groupby') @Appender(_doc_template) def head(self, n=5):