1
0
mirror of https://github.com/httpie/cli.git synced 2025-06-19 00:27:52 +02:00

Contributors for 3.2.0 (#1374)

This commit is contained in:
Batuhan Taskaya
2022-05-05 21:19:19 +03:00
committed by GitHub
parent 003f2095d4
commit 9e1c0b98c7
4 changed files with 81 additions and 10 deletions

View File

@ -252,6 +252,7 @@ def fetch_missing_users_details(people: People) -> None:
def save_awesome_people(people: People) -> None:
with DB_FILE.open(mode='w', encoding='utf-8') as fh:
json.dump(people, fh, indent=4, sort_keys=True)
fh.write("\n")
def debug(*args: Any) -> None: