Skip to content

Commit

Permalink
Fix annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulero committed Nov 8, 2022
1 parent f0faeb1 commit 24540eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/liecasadi/so3.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import dataclasses
from dataclasses import field
from typing import Union

import casadi as cs
import numpy as np
Expand Down Expand Up @@ -113,7 +114,7 @@ def quaternion_derivative(
self,
omega: Vector,
omega_in_body_fixed: bool = False,
baumgarte_coefficient: float = None,
baumgarte_coefficient: Union[float, None] = None,
):

if baumgarte_coefficient is not None:
Expand Down

0 comments on commit 24540eb

Please sign in to comment.