File size: 289 Bytes
3eb682b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
"""Set up Environment."""
import timesformer.utils.logging as logging
_ENV_SETUP_DONE = False
def setup_environment():
global _ENV_SETUP_DONE
if _ENV_SETUP_DONE:
return
_ENV_SETUP_DONE = True
|