mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 20:52:57 +08:00
fix missing dep in docs build (#557)
This commit is contained in:
@ -35,11 +35,10 @@ _prefix = "opentelemetry-instrumentation-"
|
||||
|
||||
def main():
|
||||
root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
setuppy_tmpl = Template(
|
||||
open(
|
||||
os.path.join(root_path, _template_dir, _template_name), "r"
|
||||
).read()
|
||||
)
|
||||
with open(
|
||||
os.path.join(root_path, _template_dir, _template_name), "r"
|
||||
) as template:
|
||||
setuppy_tmpl = Template(template.read())
|
||||
base_instrumentation_path = os.path.join(root_path, "instrumentation")
|
||||
|
||||
for instrumentation in os.listdir(base_instrumentation_path):
|
||||
|
Reference in New Issue
Block a user