mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-08-08 22:36:48 +02:00
doc update
This commit is contained in:
@ -82,7 +82,9 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data, raw=False, quiet=False)
|
def parse(data: Union[str, bytes],
|
||||||
|
raw: bool = False,
|
||||||
|
quiet: bool = False) -> List[JSONDictType]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -183,7 +183,7 @@ Returns:
|
|||||||
### input\_type\_check
|
### input\_type\_check
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def input_type_check(data: str) -> None
|
def input_type_check(data: object) -> None
|
||||||
```
|
```
|
||||||
|
|
||||||
Ensure input data is a string. Raises `TypeError` if not.
|
Ensure input data is a string. Raises `TypeError` if not.
|
||||||
|
Reference in New Issue
Block a user