Skip to content

Commit

Permalink
fix (ParameterType): fix typo unsighed to unsigned
Browse files Browse the repository at this point in the history
  • Loading branch information
atingber committed Jun 24, 2024
1 parent 656df62 commit 05452cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scenariogeneration/xosc/enumerations.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ class ParameterType(metaclass=_EnumMeta):
int = _OscEnum("ParameterType", "int", min_minor_version=2)
double = _OscEnum("ParameterType", "double")
string = _OscEnum("ParameterType", "string")
unsighedInt = _OscEnum("ParameterType", "unsighedInt")
unsighedShort = _OscEnum("ParameterType", "unsighedShort")
unsignedInt = _OscEnum("ParameterType", "unsignedInt")
unsignedShort = _OscEnum("ParameterType", "unsignedShorts")
boolean = _OscEnum("ParameterType", "boolean")
dateTime = _OscEnum("ParameterType", "dateTime")

Expand Down

0 comments on commit 05452cb

Please sign in to comment.