0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-28 16:24:56 +01:00
mongodb/buildscripts/util/time.py

7 lines
114 B
Python

"""Utilities for working with time."""
def ns2sec(ns):
"""Convert ns to seconds."""
return ns / (10**9)