Skip to content

Commit

Permalink
added space
Browse files Browse the repository at this point in the history
  • Loading branch information
rclarke0 committed Feb 28, 2024
1 parent 7b51761 commit e0de99a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def __init__(self, robot: str, duration: int, frequency: int) -> None:
try:
sys.path.insert(0, "/var/lib/jupyter/notebooks")
import google_sheets_tool # type: ignore[import]

credentials_path = "/var/lib/jupyter/notebooks/abr.json"
except ImportError:
raise ImportError(
Expand Down Expand Up @@ -62,7 +63,7 @@ def __init__(self, robot: str, duration: int, frequency: int) -> None:
env_data = sensor.get_reading()
timestamp = datetime.datetime.now()
# Time adjustment for ABR robot timezone
new_timestamp = timestamp - datetime.timedelta(hours=5)
new_timestamp = timestamp - datetime.timedelta(hours=5)
date = new_timestamp.date()
time = new_timestamp.time()
temp = env_data.temperature
Expand Down

0 comments on commit e0de99a

Please sign in to comment.