data: fix typo

This commit is contained in:
Shiz 2021-06-26 16:03:10 +02:00
parent 853807b4ef
commit d7415e5198
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class Static(G[T], Type[T]):
def dump(self, context: Context, stream: Stream, value: T) -> None:
context.put(self.value, value)
def sizeof(self, context: Cntext, value: O[T]) -> O[Pos]:
def sizeof(self, context: Context, value: O[T]) -> O[Pos]:
return 0
def default(self, context: Context) -> T: