Skip to content

Commit

Permalink
fixes #25
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Riddermann committed Jul 24, 2023
1 parent 86fddbe commit c6bded5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions construct-stubs/core.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ class Construct(t.Generic[ParsedType, BuildTypes]):
def build(self, obj: BuildTypes, **contextkw: ContextKWType) -> bytes: ...
def build_stream(
self, obj: BuildTypes, stream: StreamType, **contextkw: ContextKWType
) -> bytes: ...
) -> None: ...
def build_file(
self, obj: BuildTypes, filename: FilenameType, **contextkw: ContextKWType
) -> bytes: ...
) -> None: ...
def sizeof(self, **contextkw: ContextKWType) -> int: ...
def compile(
self, filename: FilenameType = ...
Expand Down

0 comments on commit c6bded5

Please sign in to comment.