Skip to content

Commit

Permalink
Files weren't saved after code refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Nov 5, 2023
1 parent 15765b6 commit 081871e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/wrapt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__version_info__ = ('1', '16', '0rc2')
__version__ = '.'.join(__version_info__)

from .variants import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
BoundFunctionWrapper, PartialCallableObjectProxy)

from .patches import (resolve_path, apply_patch, wrap_object, wrap_object_attribute,
Expand Down
2 changes: 1 addition & 1 deletion src/wrapt/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def exec_(_code_, _globs_=None, _locs_=None):
except ImportError:
pass

from .variants import (FunctionWrapper, BoundFunctionWrapper, ObjectProxy,
from .__wrapt__ import (FunctionWrapper, BoundFunctionWrapper, ObjectProxy,
CallableObjectProxy)

# Adapter wrapper for the wrapped function which will overlay certain
Expand Down
2 changes: 1 addition & 1 deletion src/wrapt/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
string_types = str,
from importlib.util import find_spec

from .variants import ObjectProxy
from .__wrapt__ import ObjectProxy

# The dictionary registering any post import hooks to be triggered once
# the target module has been imported. Once a module has been imported
Expand Down
2 changes: 1 addition & 1 deletion src/wrapt/patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
else:
string_types = str,

from .variants import FunctionWrapper
from .__wrapt__ import FunctionWrapper

# Helper functions for applying wrappers to existing functions.

Expand Down
2 changes: 1 addition & 1 deletion src/wrapt/weakrefs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import functools
import weakref

from .variants import ObjectProxy, _FunctionWrapperBase
from .__wrapt__ import ObjectProxy, _FunctionWrapperBase

# A weak function proxy. This will work on instance methods, class
# methods, static methods and regular functions. Special treatment is
Expand Down

0 comments on commit 081871e

Please sign in to comment.