-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add row numbering for tables #26
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 588ef32e5d3380f257565ff4648d3b11 | ||
config: 6df82cdb6e3ab70d022614431807b4e8 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,14 @@ Base Classes | |
:members: | ||
|
||
|
||
.. autoclass:: efficalc.Table | ||
:members: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (documentation): Consider adding a brief description for the InputTable class. A short explanation of how InputTable differs from Table and its specific use cases could be beneficial for users.
|
||
|
||
|
||
.. autoclass:: efficalc.InputTable | ||
:members: | ||
|
||
|
||
.. autoclass:: efficalc.TextBlock | ||
:members: | ||
|
||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,6 +12,10 @@ Calculation Helpers | |||||||||||||||||
:members: | ||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
.. autoclass:: efficalc.report_builder.LongCalcDisplayType | ||||||||||||||||||
:members: | ||||||||||||||||||
Comment on lines
+15
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (documentation): Consider adding a brief description for the LongCalcDisplayType class. A short explanation of this class's purpose and how it's used in the context of report building could enhance the documentation.
Suggested change
|
||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
.. autofunction:: efficalc.save_calculation_item | ||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion (documentation): Consider adding a brief description for the Table class.
A short explanation of the class's purpose and usage could help users understand its role in the library.