Skip to content

Commit

Permalink
WIP Fix nasa#72 - Upgrade PyQt and implement fixes/cleanup/refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
lbleier-GSFC committed Apr 28, 2020
1 parent 76f7287 commit d8b5fc0
Show file tree
Hide file tree
Showing 3 changed files with 2,212 additions and 2,208 deletions.
4 changes: 2 additions & 2 deletions Subsystems/cmdGui/UdpCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def __init__(self):
self.setWindowTitle(pageTitle)
self.parser = HTMLDocsParser()

for j in range(1, 26):
btn = getattr(self, f"SendButton_{j}")
for j in range(25):
btn = getattr(self, f"SendButton_{j+1}")
btn.clicked.connect(
lambda _, x=j: self.ProcessSendButtonGeneric(x))

Expand Down
Loading

0 comments on commit d8b5fc0

Please sign in to comment.