mirror of
https://github.com/django/django.git
synced 2025-03-09 08:52:32 +00:00
Removed redundant check from WKTWriter.__init__().
This is already checked in trim.setter.
This commit is contained in:
parent
d1855c4847
commit
7f2bc365b3
@ -189,8 +189,7 @@ class WKTWriter(IOBase):
|
|||||||
|
|
||||||
def __init__(self, dim=2, trim=False, precision=None):
|
def __init__(self, dim=2, trim=False, precision=None):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
if bool(trim) != self._trim:
|
self.trim = trim
|
||||||
self.trim = trim
|
|
||||||
if precision is not None:
|
if precision is not None:
|
||||||
self.precision = precision
|
self.precision = precision
|
||||||
self.outdim = dim
|
self.outdim = dim
|
||||||
|
Loading…
x
Reference in New Issue
Block a user