check_plot_axis.py

import dearpygui.dearpygui as dpg
import inspect

# 检查 add_plot_axis 函数的文档
print("add_plot_axis 函数文档:")
print(inspect.getdoc(dpg.add_plot_axis))
print("\n----------------\n")

# 检查函数签名
print("add_plot_axis 函数签名:")
print(inspect.signature(dpg.add_plot_axis))