Replaced unneeded *arguments with positional arguments.
This commit is contained in:
parent
c9159a082e
commit
8bf96c109f
|
@ -229,7 +229,7 @@ class AsSVG(GeoFunc):
|
||||||
|
|
||||||
class BoundingCircle(OracleToleranceMixin, GeoFunc):
|
class BoundingCircle(OracleToleranceMixin, GeoFunc):
|
||||||
def __init__(self, expression, num_seg=48, **extra):
|
def __init__(self, expression, num_seg=48, **extra):
|
||||||
super().__init__(*[expression, num_seg], **extra)
|
super().__init__(expression, num_seg, **extra)
|
||||||
|
|
||||||
def as_oracle(self, compiler, connection):
|
def as_oracle(self, compiler, connection):
|
||||||
clone = self.copy()
|
clone = self.copy()
|
||||||
|
|
Loading…
Reference in New Issue