Skip to content

Commit

Permalink
fix(tests)
Browse files Browse the repository at this point in the history
  • Loading branch information
matfax committed Oct 24, 2019
1 parent a929290 commit b4388a8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/test_serializable.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
from dataclasses import dataclass

from mashumaro import DataClassDictMixin

from mutapath import Path
from tests.helper import PathTest

try:
from mashumaro.types import SerializableType
from mashumaro.types import DataClassDictMixin
except ImportError:
SerializableType = object
DataClassDictMixin = object
except NotImplementedError:
SerializableType = object
DataClassDictMixin = object
else:

@dataclass
Expand Down

0 comments on commit b4388a8

Please sign in to comment.