Skip to content

Commit

Permalink
lint: ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
EdmilsonRodrigues committed Dec 21, 2024
1 parent 633bbd4 commit bc0ade2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions juju/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# Licensed under the Apache V2, see LICENCE file for details.
"""Python Library for Juju."""

from backports.datetime_fromisoformat import MonkeyPatch
try:
from backports.datetime_fromisoformat import MonkeyPatch

MonkeyPatch.patch_fromisoformat()
MonkeyPatch.patch_fromisoformat()
except ImportError:
pass

0 comments on commit bc0ade2

Please sign in to comment.