Skip to content

Commit b8aaeb1

Browse files
author
Ezra Boley
committed
Minor fix to imports on DaemonState, and removed unused imports
1 parent f4182cb commit b8aaeb1

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "devlprd"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
description = "Daemon for managing integrations with the FATNM DEVLPR"
55
readme = "README.md"
66
authors = ["Ezra Boley <eboley@wisc.edu>"]

src/devlprd/DaemonState.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
import logging
33
import threading
44
import collections as coll
5-
6-
from devlprd.config import Board
7-
5+
from .config import Board
86
from .filtering import ButterworthFilter, BUTTER8_45_55_NOTCH, BUTTER8_55_65_NOTCH
97
from pydevlpr_protocol import wrap_packet, DataTopic, DaemonSocket
108
from typing import Deque, Dict, List

src/devlprd/daemon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from .serif import DevlprSerif
88
from .DaemonState import DaemonState
9-
from .config import BOARDS, Board, get_board_ids, CONFIG
9+
from .config import BOARDS, Board, CONFIG
1010

1111
server = None
1212
state: Optional[DaemonState] = None # Make sure to pass this to any other threads that need access to shared state

0 commit comments

Comments
 (0)