mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Replaced unneeded *arguments with positional arguments.
This commit is contained in:
parent
c9159a082e
commit
8bf96c109f
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ class AsSVG(GeoFunc):
|
|||
|
||||
class BoundingCircle(OracleToleranceMixin, GeoFunc):
|
||||
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):
|
||||
clone = self.copy()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue