Skip to content
This repository has been archived by the owner on May 28, 2022. It is now read-only.

Commit

Permalink
Separates 3rd party import.
Browse files Browse the repository at this point in the history
  • Loading branch information
FranciscoCanas committed Nov 16, 2014
1 parent aa516bf commit 1081f50
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# http://wiki.github.com/Freeseer/freeseer/

import unittest

from jsonschema import ValidationError, validate

from freeseer.framework.config.options import BooleanOption
Expand Down
1 change: 1 addition & 0 deletions src/freeseer/tests/framework/config/options/test_choice.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# http://wiki.github.com/Freeseer/freeseer/

import unittest

from jsonschema import validate, ValidationError

from freeseer.framework.config.options import ChoiceOption
Expand Down
1 change: 1 addition & 0 deletions src/freeseer/tests/framework/config/options/test_float.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# http://wiki.github.com/Freeseer/freeseer/

import unittest

from jsonschema import validate, ValidationError

from freeseer.framework.config.options import FloatOption
Expand Down
1 change: 1 addition & 0 deletions src/freeseer/tests/framework/config/options/test_folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import shutil
import tempfile
import unittest

from jsonschema import validate, ValidationError

from freeseer.framework.config.options import FolderOption
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# http://wiki.github.com/Freeseer/freeseer/

import unittest

from jsonschema import validate, ValidationError

from freeseer.framework.config.options import IntegerOption
Expand Down
1 change: 1 addition & 0 deletions src/freeseer/tests/framework/config/options/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# http://wiki.github.com/Freeseer/freeseer/

import unittest

from jsonschema import ValidationError, validate

from freeseer.framework.config.options import StringOption
Expand Down
2 changes: 2 additions & 0 deletions src/freeseer/tests/framework/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
import shutil
import tempfile
import unittest

from jsonschema import validate, ValidationError

from freeseer.framework.config.profile import ProfileManager
from freeseer import settings

Expand Down

0 comments on commit 1081f50

Please sign in to comment.