fastai / nbdev

Create delightful software with Jupyter Notebooks
https://nbdev.fast.ai/
Apache License 2.0
4.8k stars 484 forks source link

Can't document static / constant variables? #1355

Open dsm-72 opened 1 year ago

dsm-72 commented 1 year ago
from nbdev import show_doc

# this gets ignored
MY_CONST = 'hello' # this gets ignored

# this shows hello not MY_CONST
showdoc(MY_CONST)