Skip to content
This repository was archived by the owner on Jun 9, 2018. It is now read-only.

Commit b7dd540

Browse files
author
Steven D. Lander
committed
cleaning up pep8 minor issues
1 parent 57e9334 commit b7dd540

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

Packaging/tiles2gpkg_parallel.py

+9-8
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,8 @@ def matrix_height(self, value):
486486

487487

488488
class Geopackage(object):
489+
"""Object representing a GeoPackage container."""
490+
489491
def __enter__(self):
490492
"""With-statement caller"""
491493
return self
@@ -1296,14 +1298,13 @@ def main(arg_list):
12961298
"are ll, ul, nw, or sw.",
12971299
choices=["ll", "ul", "sw", "nw"],
12981300
default="ll")
1299-
PARSER.add_argument(
1300-
"-srs",
1301-
metavar="srs",
1302-
help="Spatial reference " +
1303-
"system. Valid options are 3857, 4326, 3395, and 9804.",
1304-
type=int,
1305-
choices=[3857, 4326, 3395, 9804],
1306-
default=3857)
1301+
PARSER.add_argument("-srs",
1302+
metavar="srs",
1303+
help="Spatial reference " + "system. Valid options are"
1304+
+ "3857, 4326, 3395, and 9804.",
1305+
type=int,
1306+
choices=[3857, 4326, 3395, 9804],
1307+
default=3857)
13071308
PARSER.add_argument("-imagery",
13081309
metavar="imagery",
13091310
help="Imagery type. Valid options are mixed, " +

0 commit comments

Comments
 (0)