Skip to content

Commit

Permalink
docs(pano_records.py): Format fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbeyer committed Oct 14, 2023
1 parent eb67caf commit 42084ec
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/vipersci/vis/db/pano_records.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,29 +98,29 @@ class PanoRecord(Base):
Float,
nullable=False,
doc="The minimum or leftmost azimuth of this panorama in degrees, where zero "
"is the rover forward (+x) direction. "
"This azimuth is relative to the rover frame."
"is the rover forward (+x) direction. "
"This azimuth is relative to the rover frame.",
)
rover_az_max = mapped_column(
Float,
nullable=False,
doc="The maximum or rightmost azimuth of this panorama in degrees, where zero "
"is the rover forward (+x) direction. "
"This azimuth is relative to the rover frame."
"This azimuth is relative to the rover frame.",
)
rover_el_min = mapped_column(
Float,
nullable=False,
doc="The minimum or lower elevation angle of this panorama in degrees, "
"where zero is the rover level plane. "
"This elevation angle is relative to the rover frame."
"where zero is the rover level plane. "
"This elevation angle is relative to the rover frame.",
)
rover_el_max = mapped_column(
Float,
nullable=False,
doc="The maximum or upper elevation angle of this panorama in degrees, "
"where zero is the rover level plane. "
"This elevation angle is relative to the rover frame."
"where zero is the rover level plane. "
"This elevation angle is relative to the rover frame.",
)
_pid = mapped_column(
"product_id", String, nullable=False, unique=True, doc="The PDS Product ID."
Expand Down

0 comments on commit 42084ec

Please sign in to comment.