diff --git a/machine/scripture/__init__.py b/machine/scripture/__init__.py index 5bcf63e..4086370 100644 --- a/machine/scripture/__init__.py +++ b/machine/scripture/__init__.py @@ -1,5 +1,3 @@ -from typing import Any - from .canon import ( ALL_BOOK_IDS, BOOK_NUMBERS, @@ -35,14 +33,6 @@ get_bbbcccvvv, ) - -def __getattr__(name: str) -> Any: - if name.endswith("_VERSIFICATION"): - index = name.rindex("_") - return Versification.get_builtin(name[:index]) - raise AttributeError - - __all__ = [ "ALL_BOOK_IDS", "are_overlapping_verse_ranges",