diff --git a/fatamorgana/basic.py b/fatamorgana/basic.py index 1f11bb3..6010d23 100644 --- a/fatamorgana/basic.py +++ b/fatamorgana/basic.py @@ -1728,8 +1728,9 @@ class PropStringReference: def __init__(self, ref: int, ref_type: type) -> None: """ - :param ref: ID number of the target. - :param ref_type: Type of the target. One of bytes, NString, AString. + Args: + ref: ID number of the target. + ref_type: Type of the target. One of bytes, NString, AString. """ self.ref = ref self.ref_type = ref_type diff --git a/fatamorgana/records.py b/fatamorgana/records.py index 9b3881a..87e4da8 100644 --- a/fatamorgana/records.py +++ b/fatamorgana/records.py @@ -47,8 +47,7 @@ point_list_t = Sequence[Sequence[int]] class Modals: """ - Modal variables, used to store data about previously-written or - -read records. + Modal variables, used to store data about previously-written or -read records. """ repetition: repetition_t | None = None placement_x: int = 0