Skip to content

Commit d968aed

Browse files
committed
Remove abc.ABC as base class for Message
1 parent 5f7e4d5 commit d968aed

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/betterproto/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import sys
77
import typing
88
import warnings
9-
from abc import ABC
109
from base64 import (
1110
b64decode,
1211
b64encode,
@@ -605,7 +604,7 @@ def _get_cls_by_field(
605604
return field_cls
606605

607606

608-
class Message(ABC):
607+
class Message:
609608
"""
610609
The base class for protobuf messages, all generated messages will inherit from
611610
this. This class registers the message fields which are used by the serializers and

0 commit comments

Comments
 (0)