From 5660fa2fd8c0f43e8779d46229f3b1d6fb713ef1 Mon Sep 17 00:00:00 2001 From: rlskoeser Date: Tue, 26 Nov 2024 19:29:03 -0500 Subject: [PATCH] Fix mis-formatted docstring --- src/undate/converters/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/undate/converters/base.py b/src/undate/converters/base.py index ecdbf9b..630c9f5 100644 --- a/src/undate/converters/base.py +++ b/src/undate/converters/base.py @@ -25,9 +25,9 @@ - For converters with sufficient complexity, you may want to create a submodule; see ``undate.converters.calendars.hijri`` for an example. - Extend ``BaseCalendarConverter`` and implement ``parse`` and ``to_string`` - formatter methods as desired/appropriate for your converter as well as the - additional methods for ``max_month``, ``max_day``, and convertion ``to_gregorian`` - calendar. + formatter methods as desired/appropriate for your converter as well as the + additional methods for ``max_month``, ``max_day``, and convertion ``to_gregorian`` + calendar. - Add unit tests for the new calendar logic under ``tests/test_converters/calendars/`` - Add the new calendar to the ``Calendar`` enum of supported calendars in ``undate/undate.py`` and confirm that the `get_converter` method loads your