clearml-server/apiserver/timing_context.py

16 lines
239 B
Python
Raw Normal View History

class TimingStats:
@classmethod
def aggregate(cls):
return {}
2019-06-10 21:24:35 +00:00
class TimingContext:
def __init__(self, *_, **__):
pass
2019-06-10 21:24:35 +00:00
def __enter__(self):
return self
def __exit__(self, *args):
pass