Commit 64709b55794f0472335b578052a667468a4abcd3
1 parent
ca2fa7db
change in comments
Showing
1 changed file
with
3 additions
and
2 deletions
oletools/olevba.py
| ... | ... | @@ -1250,8 +1250,9 @@ def decompress_stream(compressed_container): |
| 1250 | 1250 | """ |
| 1251 | 1251 | Decompress a stream according to MS-OVBA section 2.4.1 |
| 1252 | 1252 | |
| 1253 | - compressed_container: bytearray or bytes compressed according to the MS-OVBA 2.4.1.3.6 Compression algorithm | |
| 1254 | - return the decompressed container as a bytes string | |
| 1253 | + :param compressed_container bytearray: bytearray or bytes compressed according to the MS-OVBA 2.4.1.3.6 Compression algorithm | |
| 1254 | + :return: the decompressed container as a bytes string | |
| 1255 | + :rtype: bytes | |
| 1255 | 1256 | """ |
| 1256 | 1257 | # 2.4.1.2 State Variables |
| 1257 | 1258 | ... | ... |