Commit 6b68da0f authored by Gallacchi Mattia's avatar Gallacchi Mattia
Browse files

Fix python wheel

parent 3120d6d9
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ class Window(QMainWindow, Ui_MainWindow):
                    case "Linux":
                        self._com_ports.append((f"/dev/{com.name}", com.description))
                    case "Windows":
                        self._com_ports.append(com.name, com.description)
                        self._com_ports.append((com.name, com.description))
                        
        self.comports_comboBox.addItems([x[0] for x in self._com_ports])
        self.comport_description_lineEdit.setText(self._com_ports[0][1])
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ description = "This pakages is used to control the Spherical Parallel Joint Robo
authors = ["mattia.gallacchi <mattia.gallacchi@he-arc.ch>"]
readme = "README.md"
packages = [
    {include = "frontend"}
    {include = "pyspj"}
]

[tool.poetry.dependencies]