Skip to content

Commit

Permalink
Fix deprecated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rnixx committed Jul 19, 2023
1 parent 84e16ba commit f9a6589
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/node/ext/directory/directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from node.behaviors import DictStorage
from node.behaviors import MappingAdopt
from node.behaviors import MappingNode
from node.behaviors import Reference
from node.behaviors import MappingReference
from node.compat import IS_PY2
from node.ext.directory.events import FileAddedEvent
from node.ext.directory.interfaces import IDirectory
Expand Down Expand Up @@ -134,7 +134,7 @@ def __call__(self):
@plumbing(
MappingAdopt,
DefaultInit,
Reference, # XXX: remove from default file
MappingReference, # XXX: remove from default file
MappingNode,
FileStorage)
class File(object):
Expand Down Expand Up @@ -324,7 +324,7 @@ def match(keys, key):

@plumbing(
MappingAdopt,
Reference, # XXX: remove from default file
MappingReference, # XXX: remove from default file
MappingNode,
DirectoryStorage)
class Directory(object):
Expand Down

0 comments on commit f9a6589

Please sign in to comment.