Skip to content

Commit

Permalink
Sync main and plate_reader branches at plate_reader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-polk committed Oct 13, 2024
1 parent d3a8f1f commit 5f58bc0
Showing 1 changed file with 1 addition and 29 deletions.
30 changes: 1 addition & 29 deletions fluorescence_assay/plate_reader.py
Original file line number Diff line number Diff line change
@@ -1,29 +1 @@
"""Provide the primary functions."""


def canvas(with_attribution=True):
"""
Placeholder function to show example docstring (NumPy format).
Replace this function and doc string for your own project.
Parameters
----------
with_attribution : bool, Optional, default: True
Set whether or not to display who the quote is from.
Returns
-------
quote : str
Compiled string including quote and optional attribution.
"""

quote = "The code is but a canvas to our imagination."
if with_attribution:
quote += "\n\t- Adapted from Henry David Thoreau"
return quote


if __name__ == "__main__":
# Do something if this file is invoked on its own
print(canvas())
"""Comment."""

0 comments on commit 5f58bc0

Please sign in to comment.