mirror of
https://github.com/bkerler/mtkclient.git
synced 2024-11-14 19:25:05 -05:00
fix typo mistake
This commit is contained in:
parent
abfa98a9c1
commit
17b645d957
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
# (c) B.Kerler 2018-2023
|
||||
import collections
|
||||
import sys
|
||||
import logging
|
||||
import logging.config
|
||||
|
@ -759,7 +760,7 @@ class patchtools:
|
|||
return None
|
||||
|
||||
|
||||
def read_object(data: object, definition: object) -> dict:
|
||||
def read_object(data: object, definition: collections.Iterable) -> dict:
|
||||
"""
|
||||
Unpacks a structure using the given data and definition.
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue