Fix docstrings

This commit is contained in:
Edward Betts 2024-06-02 19:04:37 +01:00
parent ade6989300
commit 5de5e22883
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
"""Accomodation"""
"""Accommodation."""
import yaml
@ -6,7 +6,7 @@ from .types import Event
def get_events(filepath: str) -> list[Event]:
"""Get accomodation from YAML."""
"""Get accommodation from YAML."""
with open(filepath) as f:
return [
Event(

View file

@ -1,4 +1,4 @@
"""Calcuate the date for carnival."""
"""Calculate the date for carnival."""
from datetime import date, timedelta

View file

@ -1,4 +1,4 @@
"""Accomodation."""
"""Domain renewal dates."""
import csv
import os