Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineBellemare committed Apr 14, 2024
1 parent 08a3b86 commit 6ba1aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/goofi/nodes/analysis/compass.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from goofi.node import Node
from goofi.params import FloatParam

class compass(Node):
class Compass(Node):
"""
A Goofi node that calculates the angle from Cartesian coordinates derived from
directional inputs (north, south, east, west).
Expand Down
2 changes: 1 addition & 1 deletion src/goofi/nodes/analysis/coord2loc.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from goofi.node import Node
from goofi.params import FloatParam

class coord2loc(Node):
class Coord2loc(Node):
def config_input_slots():
return {
"latitude": DataType.ARRAY,
Expand Down

0 comments on commit 6ba1aa8

Please sign in to comment.