1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-05-31 07:39:44 +03:00

fixed missing data types

This commit is contained in:
A_D 2021-08-22 21:46:02 +02:00
parent afa0217ed8
commit e8cd29442f
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -113,8 +113,10 @@ the index is not within `len(target)`. If the index is exactly `len(target)`,
`append` is used. `append` is used.
You can set values other than strings, but you are limited to what json itself You can set values other than strings, but you are limited to what json itself
supports, and the translation thereof to python. In general this means: supports, and the translation thereof to python. In general this means that only
`int`, `float`, `string`, `bool`, and `None` (json `null`) values may be set. JSON primitives and their python equivalents
(`int`, `float`, `string`, `bool`, and `None` (json `null`)), and
json compound types (`object -- {}` and `array -- []`) may be set.
### Testing ### Testing