Skip to content

Commit e253b36

Browse files
committed
Specify unpack_with returns None
1 parent d2ca020 commit e253b36

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rlbot_flatbuffers"
3-
version = "0.14.3"
3+
version = "0.14.4"
44
edition = "2024"
55
description = "A Python module implemented in Rust for serializing and deserializing RLBot's flatbuffers"
66
repository = "https://github.com/VirxEC/rlbot_flatbuffers_py"

codegen/pyi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ pub fn generator(type_data: &[PythonBindType]) -> io::Result<()> {
326326
write_str!(file, " \"\"\"");
327327

328328
if !bind.is_frozen {
329-
write_str!(file, " def unpack_with(self, data: bytes):");
329+
write_str!(file, " def unpack_with(self, data: bytes) -> None:");
330330
write_str!(file, " \"\"\"");
331331
write_str!(file, " Deserializes the data into this instance\n");
332332
write_str!(

0 commit comments

Comments
 (0)