Skip to content

Commit

Permalink
chore: docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvollger committed Jul 20, 2023
1 parent 3ea32b0 commit 79ca845
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions py-ft/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,6 @@
"css/rtd_dark.css",
]
html_logo = "_static/img/fiber_tools_grey.png"

# other options
autodoc_member_order = 'bysource'
2 changes: 1 addition & 1 deletion py-ft/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn pyft(_py: Python, m: &PyModule) -> PyResult<()> {
m.add("__version__", env!("CARGO_PKG_VERSION"))?;
m.add_class::<fiberdata::FiberdataIter>()?;
m.add_class::<fiberdata::Fiberdata>()?;
m.add_class::<fiberdata::Ranges>()?;
m.add_class::<fiberdata::Basemods>()?;
m.add_class::<fiberdata::Ranges>()?;
Ok(())
}

0 comments on commit 79ca845

Please sign in to comment.