Skip to content

Commit

Permalink
Remove ssh pass
Browse files Browse the repository at this point in the history
  • Loading branch information
williamckha committed Nov 9, 2024
1 parent 4641c53 commit 591e2eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/software/thunderscope/robot_diagnostics/ssh_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ class SSHDialog(QDialog):
binaries or execute platform-specific tasks.
"""

DEFAULT_SSH_PASSWORD = "thunderbots"

def __init__(self, parent: QWidget = None, robot_id: int = 0):
"""Initialize the SSHDialog
Expand Down Expand Up @@ -45,7 +43,6 @@ def __setup_ui(self) -> None:
self.ssh_host_textbox = QLineEdit()

self.ssh_password_textbox = QLineEdit()
self.ssh_password_textbox.setText(SSHDialog.DEFAULT_SSH_PASSWORD)

self.ssh_group_box = QGroupBox("SSH")
ssh_group_box_layout = QVBoxLayout()
Expand Down
2 changes: 1 addition & 1 deletion src/tbots.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
bazel_arguments += ["-pb deploy_robot_software.yml"]
bazel_arguments += ["--hosts"]
bazel_arguments += [
NetworkConstants.get_ip_address(id, RobotPlatform(args.platform))
str(NetworkConstants.get_ip_address(id, RobotPlatform(args.platform)))
for id in args.flash_robots
]
bazel_arguments += ["-pwd", args.ssh_pass]
Expand Down

0 comments on commit 591e2eb

Please sign in to comment.