Skip to content

Commit

Permalink
consolidate: Use json5 over json
Browse files Browse the repository at this point in the history
Use json5 over json to support more advanced json syntax, as.. trailing commas

Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Aug 30, 2023
1 parent f61d92f commit 5a507a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion blueos_repository/consolidate.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/env python3
import asyncio
import dataclasses
import json
from enum import Enum
from pathlib import Path
from typing import Any, AsyncIterable, Dict, List, Optional, Union

import aiohttp
import json5 as json
import semver
from registry import Registry

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ packages = [{include = "blueos_repository"}]

[tool.poetry.dependencies]
aiohttp = "3.7.4"
json-five = "1.1.1"
python = "^3.10"
semver = "^2.13.0"

Expand Down

0 comments on commit 5a507a0

Please sign in to comment.