We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1277cc3 commit 69e4352Copy full SHA for 69e4352
…olbox/persistent/human_names/__init__.py …3/python_toolbox/human_names/__init__.pysource_py3/python_toolbox/persistent/human_names/__init__.py renamed to source_py3/python_toolbox/human_names/__init__.py
…box/persistent/human_names/_name_list.py …python_toolbox/human_names/_name_list.pysource_py3/python_toolbox/persistent/human_names/_name_list.py renamed to source_py3/python_toolbox/human_names/_name_list.py
source_py3/python_toolbox/persistent/personality.py
@@ -8,6 +8,7 @@
8
'''
9
10
import colorsys
11
+
12
from .persistent import Persistent
13
14
@@ -29,10 +30,13 @@ class Personality:
29
30
31
def __init__(self, persistent):
32
33
34
+ from python_toolbox import human_names
35
+ # (Importing inside function to avoid importing this heavy module on
36
+ # general import time.)
37
38
assert isinstance(persistent, Persistent)
39
- from . import human_names
-
40
color_resolution = 100
41
42
u = int(persistent._CrossProcessPersistent__uuid)
0 commit comments