Skip to content

Commit

Permalink
Fix wrong method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Thurion committed May 18, 2021
1 parent 4016d5c commit 5fc4ae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions load.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def plugin_start3(plugin_dir):


def update_ui_unconfirmed_system(event=None):
elite_system = this.rseData.last_event_info.get(RseData.BG_RSE_SYSTEM, None)
elite_system = this.rseData.last_event_info.get(RseData.BG_RSE_SYSTEM, None) # type: EliteSystem
message = this.rseData.last_event_info.get(RseData.BG_RSE_MESSAGE, None)
if (this.enabled or this.overwrite.get()) and elite_system:
this.errorLabel.grid_remove()
Expand All @@ -156,7 +156,7 @@ def update_ui_unconfirmed_system(event=None):
if elite_system.uncertainty > 0:
distance_text = distance_text + u" (\u00B1{uncertainty})".format(uncertainty=elite_system.uncertainty)
this.distanceValue["text"] = distance_text
this.actionText["text"] = elite_system.getActionText()
this.actionText["text"] = elite_system.get_action_text()
if this.clipboard.get():
this.frame.clipboard_clear()
this.frame.clipboard_append(elite_system.name)
Expand Down

0 comments on commit 5fc4ae4

Please sign in to comment.