8000 CLN: D213: Multi-line docstring summary should start at the second line by simonjayhawkins · Pull Request #31893 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CLN: D213: Multi-line docstring summary should start at the second line #31893

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Prev Previous commit
Next Next commit
remove # noqa
  • Loading branch information
simonjayhawkins committed Feb 11, 2020
commit fda90aff095ac9f325e0c10bf3bd92b8cce51910
2 changes: 1 addition & 1 deletion pandas/core/arrays/datetimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ def tz_convert(self, tz):
dtype = tz_to_dtype(tz)
return self._simple_new(self.asi8, dtype=dtype, freq=self.freq)

def tz_localize(self, tz, ambiguous="raise", nonexistent="raise"): # noqa
def tz_localize(self, tz, ambiguous="raise", nonexistent="raise"):
"""
Localize tz-naive Datetime Array/Index to tz-aware
Datetime Array/Index.
Expand Down
0