chore(release): 0.3.0 #5

Merged
pufereq merged 30 commits from release/0.3.0 into main 2025-11-30 17:39:26 +00:00
3 changed files with 74 additions and 16 deletions
Showing only changes of commit 014c4296e0 - Show all commits

View File

@@ -4,7 +4,6 @@ from __future__ import annotations
import logging as lg
import socket
import time
import uuid
from judas_protocol import Message
@@ -36,16 +35,6 @@ class Connector:
self.mac_address: str = mac_address
def _get_mac_address(self) -> str:
mac_address: str = ":".join(
[
"{:02x}".format((uuid.getnode() >> ele) & 0xFF)
for ele in range(0, 8 * 6, 8)
][::-1]
)
self.logger.debug(f"MAC address: {mac_address}")
return mac_address
def _send_ack(self) -> None:
self.logger.debug("[>] Sending ACK...")
try: