1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-08-10 22:41:51 +02:00

rename List class to _List for documentation purposes

This commit is contained in:
Kelly Brazil
2024-02-12 15:05:44 -08:00
parent f1177a2606
commit 8ead7e4835
4 changed files with 26 additions and 26 deletions

View File

@@ -33,7 +33,7 @@ Schema:
"maximum_height": integer,
"devices": [
{
"modes": [
"resolution_modes": [
{
"resolution_width": integer,
"resolution_height": integer,
@@ -82,7 +82,7 @@ Examples:
"maximum_height": 32767,
"devices": [
{
"modes": [
"resolution_modes": [
{
"resolution_width": 1920,
"resolution_height": 1080,
@@ -143,7 +143,7 @@ Examples:
"maximum_height": 32767,
"devices": [
{
"modes": [
"resolution_modes": [
{
"resolution_width": 1920,
"resolution_height": 1080,
@@ -199,7 +199,7 @@ Examples:
### parse
```python
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict
def parse(data: str, raw: bool = False, quiet: bool = False) -> Response
```
Main text parsing function
@@ -219,4 +219,4 @@ Compatibility: linux, darwin, cygwin, aix, freebsd
Source: [`jc/parsers/xrandr.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/xrandr.py)
Version 1.4 by Kevin Lyter (code (at) lyterk.com)
Version 2.0 by Kevin Lyter (code (at) lyterk.com)