Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
MAINT: Failing unrelated pep8
  • Loading branch information
cpelley committed Nov 7, 2016
commit 4eef592ddf71fa3b9ec08ce650d52a0f2fd57a35
10 changes: 5 additions & 5 deletions lib/iris/coord_systems.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,11 +914,11 @@ def __repr__(self):
return ("LambertAzimuthalEqualArea(latitude_of_projection_origin={!r},"
" longitude_of_projection_origin={!r}, false_easting={!r},"
" false_northing={!r}, ellipsoid={!r})").format(
self.latitude_of_projection_origin,
self.longitude_of_projection_origin,
self.false_easting,
self.false_northing,
self.ellipsoid)
self.latitude_of_projection_origin,
self.longitude_of_projection_origin,
self.false_easting,
self.false_northing,
self.ellipsoid)
Copy link
Author

@cpelley cpelley Nov 10, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change, though unrelated to my own was due to a pep8 failure at my end (perhaps I was using a different pep8 version...). In any case, this simple corrects the indentation from 3 spaces to 4 spaces.

Commit: MAINT: Failing unrelated pep8


def as_cartopy_crs(self):
if self.ellipsoid is not None:
Expand Down