Skip to content

Commit

Permalink
Pre-commit check
Browse files Browse the repository at this point in the history
  • Loading branch information
kelltom committed May 14, 2023
1 parent 466d81c commit ab0962c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ We've ditched machine learned OCR in favor of a much faster and more reliable cu
<a href="https://www.buymeacoffee.com/kelltom" target="_blank">
<img src="https://i.imgur.com/5X29MVY.png" alt="Buy Me A Coffee" height="60dp">
</a>
</p>
</p>
4 changes: 1 addition & 3 deletions src/model/osrs/combat/combat.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
class OSRSCombat(OSRSBot, launcher.Launchable):
def __init__(self):
bot_title = "Combat"
description = (
"This bot kills NPCs. Position your character near some NPCs and highlight them.\nTHIS SCRIPT IS AN EXAMPLE, DO NOT USE LONGTERM."
)
description = "This bot kills NPCs. Position your character near some NPCs and highlight them.\nTHIS SCRIPT IS AN EXAMPLE, DO NOT USE LONGTERM."
super().__init__(bot_title=bot_title, description=description)
self.running_time: int = 1
self.loot_items: str = ""
Expand Down
4 changes: 3 additions & 1 deletion src/model/osrs/woodcutter.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
class OSRSWoodcutter(OSRSBot):
def __init__(self):
bot_title = "Woodcutter"
description = "This bot power-chops wood. Position your character near some trees, tag them, and press Play.\nTHIS SCRIPT IS AN EXAMPLE, DO NOT USE LONGTERM."
description = (
"This bot power-chops wood. Position your character near some trees, tag them, and press Play.\nTHIS SCRIPT IS AN EXAMPLE, DO NOT USE LONGTERM."
)
super().__init__(bot_title=bot_title, description=description)
self.running_time = 1
self.take_breaks = False
Expand Down
2 changes: 1 addition & 1 deletion src/view/title_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self, parent, main):
lambda e: self.label_note.configure(wraplength=self.label_note.winfo_width() - 20),
)
self.label_note.grid(row=2, column=0, columnspan=3, sticky="nwes", padx=15, pady=(0, 30))

# Buttons
IMG_SIZE = 24
BTN_WIDTH, BTN_HEIGHT = (96, 64)
Expand Down

0 comments on commit ab0962c

Please sign in to comment.