17 lines
329 B
Python
17 lines
329 B
Python
"""
|
|
outlook_auth/methods.py
|
|
"""
|
|
|
|
|
|
def sec_to_hm(seconds):
|
|
"""
|
|
this method is used to formate seconds to H:M and return it
|
|
args:
|
|
seconds : seconds
|
|
"""
|
|
|
|
hour = int(seconds // 3600)
|
|
minutes = int((seconds % 3600) // 60)
|
|
seconds = int((seconds % 3600) % 60)
|
|
return f"{hour:02d}:{minutes:02d}"
|