Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arihant2math committed Jun 7, 2023
1 parent 8a8d28e commit 43f02a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions autotraders/map/waypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ def update(self, data=None):
)

@staticmethod
def all(session, page: int = 1) -> PaginatedList:
def all(session, system_symbol, page: int = 1) -> PaginatedList:
def paginated_func(p, num_per_page):
r = session.get(
session.base_url
+ "systems/waypoints?limit="
+ "systems/" + system_symbol + "/waypoints?limit="
+ str(num_per_page)
+ "&page="
+ str(p)
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.4.1"
version = "1.4.2"
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.4.1"
release = "1.4.2"

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

0 comments on commit 43f02a5

Please sign in to comment.