Fix after rebase

This commit is contained in:
NIC619
2019-07-30 17:31:08 +08:00
parent e53727d301
commit c4105688d1
13 changed files with 52 additions and 51 deletions

View File

@ -25,7 +25,8 @@ class ID:
def __init__(self, id_str: str) -> None:
self._id_str = id_str
def to_bytes(self) -> bytes:
# FIXME: Should return type `bytes`
def to_bytes(self) -> str:
return self._id_str
def get_raw_id(self) -> str: