Skip to content

Commit

Permalink
NXDRIVE-2942: Improve folder selection on Direct Transfer screen --fi…
Browse files Browse the repository at this point in the history
…xed style1
  • Loading branch information
gitofanindya committed Aug 14, 2024
1 parent 46676d2 commit 8d99fb8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions nxdrive/behavior.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Allow or disallow server deletions.
"""

from types import SimpleNamespace

Behavior = SimpleNamespace(server_deletion=True)
1 change: 1 addition & 0 deletions nxdrive/client/local/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" API to access local resources for synchronization. """

from .base import FileInfo, get

# Get the local client related to the current OS
Expand Down
2 changes: 1 addition & 1 deletion nxdrive/engine/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ def resume_transfer(
else self.dao.get_dt_upload
if is_direct_transfer
else self.dao.get_upload
)
) # noqa
func = partial(meth, uid=uid) # type: ignore
self._resume_transfers(nature, func, is_direct_transfer=is_direct_transfer)

Expand Down
1 change: 1 addition & 0 deletions nxdrive/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Most of functions are pure enough to be decorated with a LRU cache.
Each *maxsize* is adjusted depending of the heavy use of the decorated function.
"""

import os
import os.path
import re
Expand Down

0 comments on commit 8d99fb8

Please sign in to comment.