mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-11 19:14:10 +02:00
Ran cog
This commit is contained in:
parent
a377d69238
commit
c12d788304
1 changed files with 2 additions and 2 deletions
|
|
@ -662,7 +662,7 @@ See :ref:`cli_convert`.
|
|||
Convert a string like a,b,c into a JSON array ["a", "b", "c"]
|
||||
|
||||
r.parsedate(value: 'str', dayfirst: 'bool' = False, yearfirst: 'bool' = False,
|
||||
errors: 'Optional[object]' = None) -> 'Optional[str]'
|
||||
errors: 'object | None' = None) -> 'str | None'
|
||||
|
||||
Parse a date and convert it to ISO date format: yyyy-mm-dd
|
||||
- dayfirst=True: treat xx as the day in xx/yy/zz
|
||||
|
|
@ -671,7 +671,7 @@ See :ref:`cli_convert`.
|
|||
- errors=r.SET_NULL to set values that cannot be parsed to null
|
||||
|
||||
r.parsedatetime(value: 'str', dayfirst: 'bool' = False, yearfirst: 'bool' =
|
||||
False, errors: 'Optional[object]' = None) -> 'Optional[str]'
|
||||
False, errors: 'object | None' = None) -> 'str | None'
|
||||
|
||||
Parse a datetime and convert it to ISO datetime format: yyyy-mm-ddTHH:MM:SS
|
||||
- dayfirst=True: treat xx as the day in xx/yy/zz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue