-
Notifications
You must be signed in to change notification settings - Fork 5
Add module level docstrings in the documentation #26
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 module level docstrings in the documentation #26
Conversation
| @@ -1,3 +1,5 @@ | |||
| """ Class to load the elements of the machine from a csv file.""" | |||
|
|
|||
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.
Do you know what the difference between a 'module' and a 'class' is?
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.
The module can contain multiple routines or different classes. My bad for calling it a class instead of a module.
| @@ -1,3 +1,5 @@ | |||
| """ Module to load the elements of the machine from a csv file.""" | |||
|
|
|||
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.
It might be worth saying that you load machine data from multiple CSV files in a single directory.
No description provided.