Skip to content

Commit

Permalink
Test refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarreras committed May 14, 2024
1 parent 7e80336 commit a809fd3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ooui/graph/indicator.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from __future__ import division
from ooui.graph.base import Graph
from ooui.helpers import parse_bool_attribute, replace_entities
from ooui.helpers.conditions import ConditionParser
from ooui.helpers.domain import Domain
from ooui.helpers import (
parse_bool_attribute, replace_entities, ConditionParser, Domain
)
from ooui.graph.fields import get_value_for_operator, round_number


Expand Down
3 changes: 3 additions & 0 deletions ooui/helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from __future__ import absolute_import
import six
from .conditions import ConditionParser
from .domain import Domain


def parse_bool_attribute(attribute):
Expand Down
4 changes: 1 addition & 3 deletions spec/graph/helpers_spec.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
from mamba import *
from expects import *

from ooui.helpers import parse_bool_attribute
from ooui.helpers.conditions import ConditionParser
from ooui.helpers.domain import Domain
from ooui.helpers import parse_bool_attribute, ConditionParser, Domain


with description('Helpers module'):
Expand Down

0 comments on commit a809fd3

Please sign in to comment.