Merge pull request #22 from cwiki-us-docs/naming_rules

修改日期格式链接的错别字
This commit is contained in:
YuCheng Hu 2021-03-12 19:25:43 -05:00 committed by GitHub
commit 49614bf7d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -14,5 +14,5 @@
| 文章标题 | 简要介绍 | | 文章标题 | 简要介绍 |
|---|---| |---|---|
| [Python With 关键字和语句](https://www.ossez.com/t/python-with/13387) | 针对 with 关键字的使用进行了一些解答 | | [Python With 关键字和语句](https://www.ossez.com/t/python-with/13387) | 针对 with 关键字的使用进行了一些解答 |
| [Python DataTime 日期处理](https://www.ossez.com/t/python-datatime/13388) | 关于日期函数处理的一些小的介绍和讨论 | | [Python DateTime 日期处理](https://www.ossez.com/t/python-datatime/13388) | 关于日期函数处理的一些小的介绍和讨论 |
| [Python 日期格式和时间以及当前时间和时间戳](https://www.ossez.com/t/python/13389) | 关于时间和当前时间的时间戳的获取 | | [Python 日期格式和时间以及当前时间和时间戳](https://www.ossez.com/t/python/13389) | 关于时间和当前时间的时间戳的获取 |

View File

@ -34,4 +34,4 @@ with open(json_filename) as json_file:
# Write to YAML # Write to YAML
with open(yaml_filename, 'w') as yaml_file: with open(yaml_filename, 'w') as yaml_file:
yaml.dump(data, yaml_file, allow_unicode=True) yaml.dump(data, yaml_file, allow_unicode=True, default_flow_style=False)

View File

@ -1,5 +1,5 @@
{ {
"first_name": "John", "first_name": "John",
"last_name": "Doe", "last_name": "Doe",
"date_of_birth": "1/1/2021" "date_of_birth": "1/1/1955"
} }