Skip to content

Commit 3a53420

Browse files
authored
v1.0.5
version 1.0.5
2 parents aa143a5 + fe0920d commit 3a53420

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyobs_gui/temperaturesplotwidget.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def add_data(self, time: Time, data: Dict[str, float]) -> None:
6464
self.data.to_csv(self.log_file, index=False)
6565

6666
# what to plot?
67+
print(self.show_option)
6768
if self.show_option == "All":
6869
d = self.data
6970
elif self.show_option == "Last minute":
@@ -91,7 +92,7 @@ def add_data(self, time: Time, data: Dict[str, float]) -> None:
9192
self.ax.legend()
9293
self.canvas.draw()
9394

94-
@pyqtSlot()
95+
@pyqtSlot(str)
9596
def on_comboShow_currentTextChanged(self, opt: str) -> None:
9697
self.show_option = opt
9798

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 = "pyobs-gui"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
description = "A remote GUI for pyobs"
55
authors = ["Tim-Oliver Husser <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)