Skip to content

Commit fefc9a5

Browse files
committed
Sync minor fix from mypy
1 parent a195b8b commit fefc9a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib-rt/librt_internal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,15 +466,15 @@ _write_short_int(PyObject *data, Py_ssize_t real_value) {
466466
_CHECK_WRITE(data, 2)
467467
#if PY_BIG_ENDIAN
468468
uint16_t to_write = ((uint16_t)(real_value - MIN_TWO_BYTES_INT) << 2) | TWO_BYTES_INT_BIT;
469-
_WRITE(data, uint16_t, reverse_16(to_write))
469+
_WRITE(data, uint16_t, reverse_16(to_write));
470470
#else
471471
_WRITE(data, uint16_t, ((uint16_t)(real_value - MIN_TWO_BYTES_INT) << 2) | TWO_BYTES_INT_BIT);
472472
#endif
473473
} else {
474474
_CHECK_WRITE(data, 4)
475475
#if PY_BIG_ENDIAN
476476
uint32_t to_write = ((uint32_t)(real_value - MIN_FOUR_BYTES_INT) << 3) | FOUR_BYTES_INT_TRAILER;
477-
_WRITE(data, uint32_t, reverse_32(to_write))
477+
_WRITE(data, uint32_t, reverse_32(to_write));
478478
#else
479479
_WRITE(data, uint32_t, ((uint32_t)(real_value - MIN_FOUR_BYTES_INT) << 3) | FOUR_BYTES_INT_TRAILER);
480480
#endif

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ authors = [
1919
{name = "Jukka Lehtosalo", email = "[email protected]"},
2020
{name = "Ivan Levkivskyi", email = "[email protected]"},
2121
]
22-
version = "0.6.0"
22+
version = "0.6.1"
2323
license = {text = "MIT"}
2424
classifiers = [
2525
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)