diff --git a/PyDnD/Inventory.py b/PyDnD/Inventory.py index 04c652e..5f867d9 100644 --- a/PyDnD/Inventory.py +++ b/PyDnD/Inventory.py @@ -4,7 +4,7 @@ {License_info} -Inventory Module is creating and managing player inventories +Inventory Module is creating and managing player inventories """ # META Data @@ -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.