Skip to content

Commit

Permalink
Update Inventory.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Coffee-fueled-deadlines committed Sep 3, 2024
1 parent 6fa5130 commit f29d8d9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions PyDnD/Inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{License_info}
Inventory Module is creating and managing player inventories
Inventory Module is creating and managing player inventories
"""

# META Data
Expand Down Expand Up @@ -43,9 +43,6 @@ def __init__(self, max_size=10):
self.items = []
self.max_size = max_size

def test_method(self):
print("This method exists to test github actions")

def add_item(self, item, quantity=1):
"""
Adds a specified quantity of an item to the inventory if there is space.
Expand Down

0 comments on commit f29d8d9

Please sign in to comment.