Skip to content

Commit 1526678

Browse files
remote erroneous x arg from pie meth
1 parent 8af1de8 commit 1526678

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bigframes/operations/plotting.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,10 @@ def barh(
9292

9393
def pie(
9494
self,
95-
x: typing.Optional[typing.Hashable] = None,
9695
y: typing.Optional[typing.Hashable] = None,
9796
**kwargs,
9897
):
99-
return self(kind="pie", x=x, y=y, **kwargs)
98+
return self(kind="pie", y=y, **kwargs)
10099

101100
def scatter(
102101
self,

0 commit comments

Comments
 (0)