9 lines
239 B
Python
9 lines
239 B
Python
"""UI widgets for chat messages."""
|
|
|
|
|
|
class MessageWidget:
|
|
"""Placeholder message widget to be filled in with GTK constructs."""
|
|
|
|
def __init__(self) -> None:
|
|
raise NotImplementedError("Message widget not implemented yet.")
|