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