mirror of
https://github.com/django/django.git
synced 2025-10-27 23:56:08 +00:00
Fixed #21270 -- Fixed E701 pep8 warnings
This commit is contained in:
@@ -4,9 +4,15 @@
|
||||
OGR methods.
|
||||
"""
|
||||
#### OGR & SRS Exceptions ####
|
||||
class GDALException(Exception): pass
|
||||
class OGRException(Exception): pass
|
||||
class SRSException(Exception): pass
|
||||
class GDALException(Exception):
|
||||
pass
|
||||
|
||||
class OGRException(Exception):
|
||||
pass
|
||||
|
||||
class SRSException(Exception):
|
||||
pass
|
||||
|
||||
class OGRIndexError(OGRException, KeyError):
|
||||
"""
|
||||
This exception is raised when an invalid index is encountered, and has
|
||||
|
||||
Reference in New Issue
Block a user