Skip to content

Commit

Permalink
STY: update isort max line length
Browse files Browse the repository at this point in the history
  • Loading branch information
rcomer committed Oct 6, 2023
1 parent fdeea3b commit f043222
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions lib/cartopy/mpl/gridliner.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

import cartopy
from cartopy.crs import PlateCarree, Projection, _RectangularProjection
from cartopy.mpl.ticker import (LatitudeFormatter, LatitudeLocator,
LongitudeFormatter, LongitudeLocator)
from cartopy.mpl.ticker import (LatitudeFormatter, LatitudeLocator, LongitudeFormatter,
LongitudeLocator)


degree_locator = mticker.MaxNLocator(nbins=9, steps=[1, 1.5, 1.8, 2, 3, 6, 10])
Expand Down
3 changes: 1 addition & 2 deletions lib/cartopy/tests/mpl/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@

import cartopy.crs as ccrs
import cartopy.feature as cfeature
from cartopy.mpl.geoaxes import (GeoAxes, GeoAxesSubplot,
InterProjectionTransform)
from cartopy.mpl.geoaxes import GeoAxes, GeoAxesSubplot, InterProjectionTransform


class TestNoSpherical:
Expand Down
5 changes: 2 additions & 3 deletions lib/cartopy/tests/mpl/test_gridliner.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
import cartopy.crs as ccrs
from cartopy.mpl import _MPL_36
from cartopy.mpl.geoaxes import GeoAxes
from cartopy.mpl.gridliner import (LATITUDE_FORMATTER, LONGITUDE_FORMATTER,
Gridliner, classic_formatter,
classic_locator)
from cartopy.mpl.gridliner import (LATITUDE_FORMATTER, LONGITUDE_FORMATTER, Gridliner,
classic_formatter, classic_locator)
from cartopy.mpl.ticker import LongitudeFormatter, LongitudeLocator


Expand Down
4 changes: 2 additions & 2 deletions lib/cartopy/tests/mpl/test_ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

import cartopy.crs as ccrs
from cartopy.mpl.geoaxes import GeoAxes
from cartopy.mpl.ticker import (LatitudeFormatter, LatitudeLocator,
LongitudeFormatter, LongitudeLocator)
from cartopy.mpl.ticker import (LatitudeFormatter, LatitudeLocator, LongitudeFormatter,
LongitudeLocator)


ONE_MIN = 1 / 60.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ ignore = [
force_sort_within_sections = true
known_first_party = "cartopy"
lines_after_imports = 2
line_length = 88
no_lines_before = "LOCALFOLDER"
skip_gitignore = true
verbose = false
Expand Down

0 comments on commit f043222

Please sign in to comment.