Skip to content
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

isort #2469

Merged
merged 1 commit into from
Oct 7, 2018
Merged

isort #2469

merged 1 commit into from
Oct 7, 2018

Conversation

max-sixty
Copy link
Collaborator

Do we want to keep isort up to date? I think it's a balance between consistency vs. overhead

@pep8speaks
Copy link

Hello @max-sixty! Thanks for submitting the PR.

file_to_check.py:943:-13592: W605 invalid escape sequence '\s'
file_to_check.py:943:-13408: W605 invalid escape sequence '\s'
file_to_check.py:943:-13228: W605 invalid escape sequence '\s'
file_to_check.py:943:-11196: W605 invalid escape sequence '\d'
file_to_check.py:943:-8162: W605 invalid escape sequence '\d'


Line 422:17: W605 invalid escape sequence '\d'

Line 68:2: W605 invalid escape sequence '-'
Line 68:2: W605 invalid escape sequence ':'
Line 69:6: W605 invalid escape sequence '\d'
Line 69:6: W605 invalid escape sequence '\d'
Line 69:6: W605 invalid escape sequence '\d'
Line 69:6: W605 invalid escape sequence '\d'
Line 69:6: W605 invalid escape sequence '\d'
Line 69:6: W605 invalid escape sequence '\d'

Line 208:80: E501 line too long (90 > 79 characters)
Line 427:80: E501 line too long (82 > 79 characters)
Line 463:80: E501 line too long (86 > 79 characters)
Line 466:80: E501 line too long (84 > 79 characters)
Line 470:80: E501 line too long (81 > 79 characters)
Line 471:80: E501 line too long (87 > 79 characters)
Line 484:80: E501 line too long (82 > 79 characters)
Line 494:80: E501 line too long (80 > 79 characters)
Line 503:80: E501 line too long (80 > 79 characters)
Line 525:80: E501 line too long (84 > 79 characters)
Line 558:80: E501 line too long (80 > 79 characters)
Line 562:80: E501 line too long (81 > 79 characters)
Line 566:80: E501 line too long (85 > 79 characters)
Line 630:80: E501 line too long (81 > 79 characters)
Line 634:80: E501 line too long (85 > 79 characters)
Line 641:80: E501 line too long (86 > 79 characters)
Line 647:80: E501 line too long (86 > 79 characters)
Line 654:80: E501 line too long (89 > 79 characters)
Line 704:23: E122 continuation line missing indentation or outdented
Line 820:80: E501 line too long (80 > 79 characters)

Line 729:80: E501 line too long (81 > 79 characters)
Line 740:80: E501 line too long (80 > 79 characters)
Line 758:80: E501 line too long (88 > 79 characters)
Line 769:80: E501 line too long (84 > 79 characters)
Line 778:80: E501 line too long (84 > 79 characters)
Line 785:80: E501 line too long (80 > 79 characters)
Line 801:80: E501 line too long (84 > 79 characters)
Line 818:80: E501 line too long (80 > 79 characters)
Line 1097:80: E501 line too long (81 > 79 characters)
Line 1203:80: E501 line too long (92 > 79 characters)
Line 1382:80: E501 line too long (92 > 79 characters)
Line 1418:71: W291 trailing whitespace
Line 1641:80: E501 line too long (82 > 79 characters)
Line 1780:80: E501 line too long (82 > 79 characters)
Line 1883:80: E501 line too long (80 > 79 characters)
Line 1884:80: E501 line too long (80 > 79 characters)
Line 1994:16: E111 indentation is not a multiple of four
Line 2001:1: W293 blank line contains whitespace
Line 2188:80: E501 line too long (80 > 79 characters)
Line 2273:80: E501 line too long (80 > 79 characters)
Line 2990:80: E501 line too long (86 > 79 characters)
Line 2997:80: E501 line too long (82 > 79 characters)
Line 3039:80: E501 line too long (80 > 79 characters)
Line 3757:80: E501 line too long (80 > 79 characters)
Line 3838:80: E501 line too long (83 > 79 characters)
Line 3916:80: E501 line too long (82 > 79 characters)
Line 3922:80: E501 line too long (84 > 79 characters)
Line 3933:80: E501 line too long (82 > 79 characters)
Line 3936:80: E501 line too long (88 > 79 characters)
Line 3937:80: E501 line too long (83 > 79 characters)

@shoyer shoyer merged commit 3d65f02 into pydata:master Oct 7, 2018
@shoyer
Copy link
Member

shoyer commented Oct 7, 2018

thanks @max-sixty !

@max-sixty max-sixty deleted the isort branch October 8, 2018 01:38
dcherian pushed a commit to maahn/xarray that referenced this pull request Oct 10, 2018
* master: (51 commits)
  xarray.backends refactor (pydata#2261)
  Fix indexing error for data loaded with open_rasterio (pydata#2456)
  Properly support user-provided norm. (pydata#2443)
  pep8speaks (pydata#2462)
  isort (pydata#2469)
  tests shoudn't need to pass for a PR (pydata#2471)
  Replace the last of unittest with pytest (pydata#2467)
  Add python_requires to setup.py (pydata#2465)
  Update whats-new.rst (pydata#2466)
  Clean up _parse_array_of_cftime_strings (pydata#2464)
  plot.contour: Don't make cmap if colors is a single color. (pydata#2453)
  np.AxisError was added in numpy 1.13 (pydata#2455)
  Add CFTimeIndex.shift (pydata#2431)
  Fix FutureWarning in CFTimeIndex.date_type (pydata#2448)
  fix:2445 (pydata#2446)
  Enable use of cftime.datetime coordinates with differentiate and interp (pydata#2434)
  restore ddof support in std (pydata#2447)
  Future warning for default reduction dimension of groupby (pydata#2366)
  Remove incorrect statement about "drop" in the text docs (pydata#2439)
  Use profile mechanism, not no-op mutation (pydata#2442)
  ...
dcherian pushed a commit to dcherian/xarray that referenced this pull request Oct 10, 2018
* master: (21 commits)
  xarray.backends refactor (pydata#2261)
  Fix indexing error for data loaded with open_rasterio (pydata#2456)
  Properly support user-provided norm. (pydata#2443)
  pep8speaks (pydata#2462)
  isort (pydata#2469)
  tests shoudn't need to pass for a PR (pydata#2471)
  Replace the last of unittest with pytest (pydata#2467)
  Add python_requires to setup.py (pydata#2465)
  Update whats-new.rst (pydata#2466)
  Clean up _parse_array_of_cftime_strings (pydata#2464)
  plot.contour: Don't make cmap if colors is a single color. (pydata#2453)
  np.AxisError was added in numpy 1.13 (pydata#2455)
  Add CFTimeIndex.shift (pydata#2431)
  Fix FutureWarning in CFTimeIndex.date_type (pydata#2448)
  fix:2445 (pydata#2446)
  Enable use of cftime.datetime coordinates with differentiate and interp (pydata#2434)
  restore ddof support in std (pydata#2447)
  Future warning for default reduction dimension of groupby (pydata#2366)
  Remove incorrect statement about "drop" in the text docs (pydata#2439)
  Use profile mechanism, not no-op mutation (pydata#2442)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants