Skip to content

Commit

Permalink
removing call to private property of other class
Browse files Browse the repository at this point in the history
  • Loading branch information
rpoleski committed Jun 30, 2023
1 parent 84c5ea1 commit cb303e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/MulensModel/fitdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,8 @@ def get_dataset_trajectory(self):
return self.model.get_trajectory(self.dataset.time)
else:
kwargs_ = {
'times': self.dataset.time, 'parallax': self.model._parallax,
'times': self.dataset.time,
'parallax': self.model.get_parallax(),
'coords': self.model.coords,
'satellite_skycoord': self.dataset.satellite_skycoord}

Expand Down
2 changes: 1 addition & 1 deletion source/MulensModel/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.16.6"
__version__ = "2.16.7"

0 comments on commit cb303e4

Please sign in to comment.