Skip to content

Commit

Permalink
Merge pull request #8 from ikuzmin404/patch-1
Browse files Browse the repository at this point in the history
Small change of deprecated function
  • Loading branch information
gusamarante authored Sep 16, 2024
2 parents 02c8039 + 898f022 commit bb73961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsgepy/kalman/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def get_params(obj):
'''Get names and values of all parameters in `obj`'s __init__'''
try:
# get names of every variable in the argument
args = inspect.getargspec(obj.__init__)[0]
args = inspect.getfullargspec(obj.__init__)[0]
args.pop(0) # remove "self"

# get values for each of the above in the object
Expand Down

0 comments on commit bb73961

Please sign in to comment.