Skip to content

Commit

Permalink
fix issue with unnecessary pyside6 import, now using qtpy
Browse files Browse the repository at this point in the history
  • Loading branch information
CPrescher committed Oct 27, 2023
1 parent ed9301c commit a2e8dd1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions glassure/gui/controller/glassure_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import os

from PySide6.QtCore import Slot
from qtpy import QtCore, QtWidgets
import pyqtgraph as pg

Expand Down Expand Up @@ -165,7 +164,7 @@ def delete_element_btn_clicked(self):
def update_sample(self, sample: Sample):
self.model.sample_config = sample

@Slot()
@QtCore.Slot()
def update_model(self):
sample_config = self.main_widget.get_sample_config()
transform_config = self.main_widget.get_transform_config()
Expand Down

0 comments on commit a2e8dd1

Please sign in to comment.