Skip to content

Commit

Permalink
isort fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sonaalthaker committed Feb 15, 2024
1 parent 3b99686 commit 3a8e0ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rubicon_ml/domain/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from datetime import datetime
from typing import List, Optional

from rubicon_ml.domain.mixin import TagMixin, CommentMixin
from rubicon_ml.domain.mixin import CommentMixin, TagMixin
from rubicon_ml.domain.utils import TrainingMetadata, uuid


Expand Down
2 changes: 1 addition & 1 deletion tests/unit/domain/test_mixin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from rubicon_ml.domain.mixin import TagMixin, CommentMixin
from rubicon_ml.domain.mixin import CommentMixin, TagMixin


class Taggable(TagMixin, CommentMixin):
Expand Down

0 comments on commit 3a8e0ca

Please sign in to comment.