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

Method _end_of_minute

src/pendulum/datetime.py:807–811  ·  view source on GitHub ↗

Set seconds to 59 and microseconds to 999999.

(self)

Source from the content-addressed store, hash-verified

805 return self.set(second=0, microsecond=0)
806
807 def _end_of_minute(self) -> Self:
808 """
809 Set seconds to 59 and microseconds to 999999.
810 """
811 return self.set(second=59, microsecond=999999)
812
813 def _start_of_hour(self) -> Self:
814 """

Callers

nothing calls this directly

Calls 1

setMethod · 0.95

Tested by

no test coverage detected