X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c981b80d8965d62435045518f569e3f270014298..873fcf181c037cc1e42419bfeaf5bb70c9d9e239:/sdk/python/arvados/timer.py diff --git a/sdk/python/arvados/timer.py b/sdk/python/arvados/timer.py index 739d0d59c0..39dbc7874e 100644 --- a/sdk/python/arvados/timer.py +++ b/sdk/python/arvados/timer.py @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + import time class Timer(object): @@ -13,4 +17,4 @@ class Timer(object): self.secs = self.end - self.start self.msecs = self.secs * 1000 # millisecs if self.verbose: - print 'elapsed time: %f ms' % self.msecs + print('elapsed time: %f ms' % self.msecs)