Differential Revision: D90237984 fbshipit-source-id: 526fd760f303bf31be4f743bdcd77760496de0de
11 lines
235 B
Python
11 lines
235 B
Python
# Copyright (c) Meta Platforms, Inc. and affiliates. All Rights Reserved
|
|
|
|
# pyre-unsafe
|
|
|
|
import os
|
|
|
|
is_enabled = False
|
|
if os.getenv("USE_PERFLIB", "1") == "1":
|
|
# print("Enabled the use of perflib.\n", end="")
|
|
is_enabled = True
|