Skip to content

Commit

Permalink
Fix importing order
Browse files Browse the repository at this point in the history
Signed-off-by: rmazzine <[email protected]>
  • Loading branch information
rmazzine committed Sep 11, 2023
1 parent 4c53de2 commit 6c07992
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dice_ml/counterfactual_explanations.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from counterplots import CreatePlot
from raiutils.exceptions import UserConfigValidationException

from dice_ml.constants import _SchemaVersions, BackEndTypes
from dice_ml.constants import BackEndTypes, _SchemaVersions
from dice_ml.diverse_counterfactuals import (CounterfactualExamples,
_DiverseCFV2SchemaConstants)

Expand Down
8 changes: 4 additions & 4 deletions tests/test_counterfactual_explanations.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import json
import unittest
from unittest.mock import Mock, patch

import numpy as np
import pandas as pd
import pytest
import unittest
from unittest.mock import patch, Mock
from raiutils.exceptions import UserConfigValidationException

import pandas as pd
import numpy as np
from dice_ml.counterfactual_explanations import CounterfactualExplanations


Expand Down

0 comments on commit 6c07992

Please sign in to comment.