comment style

This commit is contained in:
Jan Petykiewicz 2024-07-29 03:53:59 -07:00
parent ab8b71b149
commit d05561af41
2 changed files with 4 additions and 4 deletions

View File

@ -1728,8 +1728,9 @@ class PropStringReference:
def __init__(self, ref: int, ref_type: type) -> None: def __init__(self, ref: int, ref_type: type) -> None:
""" """
:param ref: ID number of the target. Args:
:param ref_type: Type of the target. One of bytes, NString, AString. ref: ID number of the target.
ref_type: Type of the target. One of bytes, NString, AString.
""" """
self.ref = ref self.ref = ref
self.ref_type = ref_type self.ref_type = ref_type

View File

@ -47,8 +47,7 @@ point_list_t = Sequence[Sequence[int]]
class Modals: class Modals:
""" """
Modal variables, used to store data about previously-written or Modal variables, used to store data about previously-written or -read records.
-read records.
""" """
repetition: repetition_t | None = None repetition: repetition_t | None = None
placement_x: int = 0 placement_x: int = 0