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

Method in_minutes

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

Source from the content-addressed store, hash-verified

233 return int(self.total_hours())
234
235 def in_minutes(self) -> int:
236 return int(self.total_minutes())
237
238 def in_seconds(self) -> int:
239 return int(self.total_seconds())

Calls 1

total_minutesMethod · 0.95