Skip to content

Commit

Permalink
Merge pull request #176 from canonn-science/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
NoFoolLikeOne committed Apr 1, 2023
2 parents 1e84292 + 03fa56c commit b430440
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion canonn/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


class ClientVersion():
ver = "7.1.0"
ver = "7.1.1"
client_version = f"EDMC-Canonn.{ver}"

@classmethod
Expand Down
4 changes: 3 additions & 1 deletion canonn/systems.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ class Systems():

@classmethod
def storeSystem(cls, system, pos):

if not system in cls.systemCache:
if type(pos) is dict:
pos = sorted(pos.values())
# we will assume x y z in correct order
pos = pos.values()
cls.systemCache[system] = pos

@classmethod
Expand Down

0 comments on commit b430440

Please sign in to comment.