Skip to content

Commit

Permalink
(m) Fix Python getters on Orbit class
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Jun 14, 2023
1 parent c24f986 commit 03a5f5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cosmic/orbit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -874,12 +874,12 @@ impl Orbit {
#[cfg(feature = "python")]
#[getter]
fn y_km(&self) -> f64 {
self.x_km
self.y_km
}
#[cfg(feature = "python")]
#[getter]
fn z_km(&self) -> f64 {
self.x_km
self.z_km
}
#[cfg(feature = "python")]
#[getter]
Expand Down

0 comments on commit 03a5f5d

Please sign in to comment.