Skip to content

Commit

Permalink
fix: linting errors caused by ruff 0.6.x import sorting (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
ca-scribner authored Aug 20, 2024
1 parent 058b490 commit bfe0f4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
from charms.tempo_k8s.v1.charm_tracing import trace_charm
from charms.traefik_k8s.v2.ingress import IngressPerAppReadyEvent, IngressPerAppRequirer
from cosl.coordinated_workers.coordinator import Coordinator
from ops.model import ModelError

from mimir_config import MimirConfig, MimirRolesConfig
from nginx_config import NginxConfig
from ops.model import ModelError

# Log messages can be retrieved using juju debug-log
logger = logging.getLogger(__name__)
Expand Down
3 changes: 2 additions & 1 deletion tests/unit/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
import os
import unittest

from charm import MimirCoordinatorK8SOperatorCharm
from ops.model import BlockedStatus
from ops.testing import Harness

from charm import MimirCoordinatorK8SOperatorCharm


class TestCharm(unittest.TestCase):
def setUp(self):
Expand Down

0 comments on commit bfe0f4e

Please sign in to comment.