Skip to content

Commit

Permalink
Merge pull request #106 from CarletonURocketry/eh/dockerfile-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EliasJRH authored Jul 10, 2024
2 parents c403ea1 + a456856 commit 94ef982
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM python:3.11-slim
MAINTAINER Jacob Terkuc

# Update and upgrade packages
RUN apt-get update && apt-get upgrade && pip install --upgrade pip
RUN apt-get update && apt-get upgrade -y && pip install --upgrade pip

# Install Virtual Env
RUN pip install virtualenv
Expand Down
4 changes: 2 additions & 2 deletions modules/telemetry/v1/data_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,8 @@ def __init__(self, mission_time: int, latitude: int, longitude: int) -> None:
longitude: The longitude in units of degrees.
"""
super().__init__(mission_time)
self.latitude: int = latitude
self.longitude: int = longitude
self.latitude: float = latitude
self.longitude: float = longitude

@classmethod
def from_bytes(cls, payload: bytes) -> Self:
Expand Down

0 comments on commit 94ef982

Please sign in to comment.