MCPcopy Index your code
hub / github.com/python-pendulum/pendulum / in_hours

Method in_hours

src/pendulum/duration.py:232–233  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

230 return int(self.total_days())
231
232 def in_hours(self) -> int:
233 return int(self.total_hours())
234
235 def in_minutes(self) -> int:
236 return int(self.total_minutes())

Calls 1

total_hoursMethod · 0.95