Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arihant2math committed Jun 4, 2023
1 parent 93bf82b commit 4b971b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autotraders/map/waypoint_types/marketplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class TradeGood(Item):
def __init__(self, data):
super().__init__(data["symbol"], data["supply"], data["description"])
super().__init__(data["symbol"], data["supply"], None)
self.trade_volume: int = data["tradeVolume"]
self.supply: str = data["supply"]
self.purchase_price: int = data["purchasePrice"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "autotraders"
version = "1.3.2"
version = "1.3.3"
authors = [
{ name="Ashwin Naren", email="arihant2math@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
project = "Autotraders"
copyright = "2023, cosmictraders"
author = "cosmictraders"
release = "1.3.2"
release = "1.3.3"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down

0 comments on commit 4b971b1

Please sign in to comment.