Skip to content

Commit

Permalink
fix catleg lf article command (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
rprimet authored Jan 24, 2024
1 parent d4c64c4 commit 9a6a6f4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/catleg/catleg.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,12 @@ def lf_article(
Retrieve an article from Legifrance.
Outputs the raw Legifrance JSON representation.
"""
json.dumps(
_lf_article(aid_or_url),
indent=2,
ensure_ascii=False,
print(
json.dumps(
_lf_article(aid_or_url),
indent=2,
ensure_ascii=False,
)
)


Expand Down

0 comments on commit 9a6a6f4

Please sign in to comment.