remove unnecessary defn of `null`

This commit is contained in:
Alex Stokes 2021-05-28 12:27:29 -07:00
parent ef9b7125c2
commit b763416a6b
No known key found for this signature in database
GPG Key ID: 99B3D88FD6C55A69
1 changed files with 0 additions and 7 deletions

View File

@ -17,7 +17,6 @@
- [Serialization](#serialization)
- [`uintN`](#uintn)
- [`boolean`](#boolean)
- [`null`](#null)
- [`Bitvector[N]`](#bitvectorn)
- [`Bitlist[N]`](#bitlistn)
- [Vectors, containers, lists](#vectors-containers-lists)
@ -123,12 +122,6 @@ assert value in (True, False)
return b"\x01" if value is True else b"\x00"
```
### `null`
```python
return b""
```
### `Bitvector[N]`
```python