Skip to content

Commit

Permalink
minor formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
natemacfadden committed Mar 11, 2024
1 parent 1febff5 commit 1c2f097
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/cytools/cone.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,12 @@ class Cone:
```
"""

def __init__(self, rays=None, hyperplanes=None, parse_inputs=True,\
check=True, copy=True):
def __init__(self,
rays: "ArrayLike"=None,
hyperplanes: "ArrayLike"=None,
parse_inputs: bool=True,
check: bool=True,
copy: bool=True):
"""
**Description:**
Initializes a `Cone` object.
Expand Down

0 comments on commit 1c2f097

Please sign in to comment.