Skip to content

Commit

Permalink
Merge pull request #1092 from naicode/six_wraps
Browse files Browse the repository at this point in the history
Fixes #1086: use six.wraps insted of functools
  • Loading branch information
dmitriy-serdyuk committed May 20, 2016
2 parents ea1b751 + cb3ad9b commit 4458a6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blocks/bricks/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import inspect
from abc import ABCMeta
from collections import OrderedDict
from functools import wraps
from six import wraps
from operator import attrgetter
from types import MethodType

Expand Down
2 changes: 1 addition & 1 deletion blocks/bricks/recurrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import copy
import inspect
import logging
from functools import wraps
from six import wraps

from picklable_itertools.extras import equizip
import numpy
Expand Down
2 changes: 1 addition & 1 deletion blocks/utils/testing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import os
import sys
from functools import wraps
from six import wraps
from importlib import import_module
from unittest.case import SkipTest

Expand Down

0 comments on commit 4458a6e

Please sign in to comment.