Skip to content

Commit f7cb8ee

Browse files
committed
make deg keyword only and z position only
Signed-off-by: Pradyot Ranjan <99216956+pradyotRanjan@users.noreply.github.com>
1 parent 15c8cfe commit f7cb8ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/array_api_extra/_lib/_funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ def union1d(a: Array, b: Array, /, *, xp: ModuleType) -> Array:
821821
return xp.asarray(xp.unique_values(xp.concat([a, b])))
822822

823823

824-
def angle(z: Array, deg: bool = False, *, xp: ModuleType | None = None) -> Array:
824+
def angle(z: Array, /, *, deg: bool = False, xp: ModuleType | None = None) -> Array:
825825
"""
826826
Return the angle of the complex argument.
827827

0 commit comments

Comments
 (0)