__init__.py 235 B

12345678910
  1. # Copyright (c) Meta Platforms, Inc. and affiliates. All Rights Reserved
  2. # pyre-unsafe
  3. import os
  4. is_enabled = False
  5. if os.getenv("USE_PERFLIB", "1") == "1":
  6. # print("Enabled the use of perflib.\n", end="")
  7. is_enabled = True