Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt scope example to address the change in scope module averager #67

Merged
merged 2 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ jupytext==1.13.7
ipython
requests
sphinxcontrib-spelling
lxml_html_clean
14 changes: 10 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]

html_css_files = ['zhinst-sphinx-theme/css/custom.css']
html_css_files = ["zhinst-sphinx-theme/css/custom.css"]

html_theme_options = {
"logo": {
Expand Down Expand Up @@ -111,7 +111,13 @@

# Spelling
# sphinxcontrib.spelling configuration file
spelling_word_list_filename='spelling_wordlist.txt'
spelling_word_list_filename = "spelling_wordlist.txt"
# Show suggestion in console output
spelling_show_suggestions=False
spelling_exclude_patterns=['examples/*.nblink', 'source/_static/zhinst-sphinx-theme/**/*']
spelling_show_suggestions = False
spelling_exclude_patterns = [
"examples/*.nblink",
"source/_static/zhinst-sphinx-theme/**/*",
]

# Warnings
suppress_warnings = ["config.cache"]
1 change: 0 additions & 1 deletion examples/scope_module.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ MIN_NUMBER_OF_RECORDS = 20

scope_module = session.modules.scope
scope_module.mode(1)
scope_module.averager.weight(1)
scope_module.historylength(20)
scope_module.fft.window(0)
```
Expand Down
Loading