Add punctuation to docstrings

This commit is contained in:
Julian Stirling 2025-07-10 02:03:02 +01:00
parent 4dc41bb008
commit 80beeea07b
34 changed files with 232 additions and 235 deletions

View file

@ -87,7 +87,7 @@ class OFMHandler(logging.Handler):
self._log.pop(0)
def emit(self, record):
"""Emit will save the logged record to the log"""
"""Emit will save the logged record to the log."""
# Basic filter for now that simply stops uvicorn.access logs
# These are the logs each time an API endpoint is accessed
# This is only the log for the UI.
@ -105,7 +105,7 @@ class OFMHandler(logging.Handler):
@property
def log_history(self):
"""Return the log history up to the maximum number of logs"""
"""Return the log history up to the maximum number of logs."""
return "\n".join(self._log)