Skip to content

Commit

Permalink
Fixed typo in spectrograph_status function name
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Sep 13, 2024
1 parent b4ce98f commit e316c6c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Next version

### 🔧 Fixed

* Fixed typo in `spectrograph_status` function name.


## 0.3.4 - September 12, 2024

### ⚙️ Engineering
Expand Down
4 changes: 2 additions & 2 deletions src/lvmopstools/devices/specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"spectrograph_temperatures",
"spectrograph_pressures",
"spectrograph_mechanics",
"spectrogaph_status",
"spectrograph_status",
"exposure_etr",
]

Expand Down Expand Up @@ -323,7 +323,7 @@ class SpectrographStatusResponse(TypedDict):
etr: tuple[float, float] | tuple[None, None]


async def spectrogaph_status() -> SpectrographStatusResponse:
async def spectrograph_status() -> SpectrographStatusResponse:
"""Returns the status of the spectrographs."""

spec_names = get_args(Spectrographs)
Expand Down

0 comments on commit e316c6c

Please sign in to comment.