Skip to content

Commit a66e11c

Browse files
committed
-
1 parent 83905f1 commit a66e11c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

source_py3/python_toolbox/import_tools.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import imp
99
import zipimport
1010
import functools
11+
import pathlib
1112

1213
from python_toolbox import package_finder
1314
from python_toolbox import caching

source_py3/python_toolbox/sys_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self, addition):
7474
`addition` may be a path or a sequence of paths.
7575
'''
7676
self.addition = map(
77-
unicode,
77+
str,
7878
sequence_tools.to_tuple(addition,
7979
item_type=(str, pathlib.PurePath))
8080
)

source_py3/test_python_toolbox/test_temp_value_setting/test_temp_working_directory_setter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'''Testing `python_toolbox.temp_value_setting.TempWorkingDirectorySetter`.'''
55

66
import os
7-
?import pathlib
7+
import pathlib
88
import shutil
99
import tempfile
1010

0 commit comments

Comments
 (0)