Skip to content

Commit

Permalink
Filter the new Correctors in the PS Cycle GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelLyra8 committed Oct 4, 2024
1 parent 39dd11f commit 354785b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyqt-apps/siriushla/as_ps_cycle/cycle_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def __init__(self, parent=None, checked_accs=(), adv_mode=False):
self.setWindowIcon(qta.icon('mdi.recycle', color=cor))
self._is_adv_mode = adv_mode
# Data structs
self._psnames = get_psnames(isadv=self._is_adv_mode)
self._psnames = Filter.process_filters(
get_psnames(isadv=self._is_adv_mode),
filters={'sub': '((?!SB).)*'})
self._timing = Timing()
self._ps2cycle = list()
self._ps_ready = list()
Expand Down

0 comments on commit 354785b

Please sign in to comment.