Skip to content

Commit

Permalink
Add type annotation for self.Ga in Mv
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil committed May 10, 2024
1 parent eefc1d1 commit a013329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galgebra/mv.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def _make_odd(ga: 'Ga', __name: str, **kwargs) -> Expr:
_make_spinor = _make_even # alias for compatibility with old code
### GSSG: removed alias `_make_even = _make_spinor_`

def __init__(self, *args, ga, recp=None, coords=None, **kwargs):
def __init__(self, *args, ga: 'Ga', recp=None, coords=None, **kwargs):
"""
__init__(self, *args, ga, recp=None, **kwargs)
Expand Down

0 comments on commit a013329

Please sign in to comment.