Skip to content

Commit

Permalink
fixed f-strings for Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Jan 16, 2025
1 parent 7dceb70 commit 4e30bb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DJICOT: DJI Drone Detection, Tracking & Identification with TAK

DJICOT is a tool designed to monitor and analyze DJI OcuSync Drone ID data within the
DJICOT is a tool designed to monitor and analyze DJI OcuSync Drone ID sUAS data within the
Team Awareness Kit (TAK) ecosystem. It provides capabilities for detecting, tracking, and identifying
drones using commercial off-the-shelf (COTS) equipment. DJICOT ensures rapid deployment and seamless
integration into existing common operating picture and situational awareness systems.
Expand Down
2 changes: 1 addition & 1 deletion djicot/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def hello_event(self, init=False):
"""Sends a "hello world" style event to the TX queue. This event is sent periodically or on initialization."""
timer = int(time.time()) % 60 == 0
if init or timer:
data = f"{init=} {timer=}"
data = f"init={init} timer={timer}"
event: Optional[bytes] = xml_to_cot(data, self.config, "sensor_to_cot")
await self.put_queue(event)

Expand Down

0 comments on commit 4e30bb0

Please sign in to comment.