Skip to content

Commit 2d26147

Browse files
committed
config: Slight doctring fixup
1 parent 735a1dc commit 2d26147

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Orange/canvas/config.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,9 @@ def init():
158158

159159
def data_dir():
160160
"""
161-
Return the application data directory. If the directory path
161+
Return the Orange application data directory. If the directory path
162162
does not yet exists then create it.
163163
"""
164-
165164
from Orange.misc import environ
166165
path = os.path.join(environ.data_dir(), "canvas")
167166
try:
@@ -172,9 +171,9 @@ def data_dir():
172171

173172

174173
def cache_dir():
175-
"""Return the application cache directory. If the directory path
174+
"""
175+
Return the Orange application cache directory. If the directory path
176176
does not yet exists then create it.
177-
178177
"""
179178
from Orange.misc import environ
180179
path = os.path.join(environ.cache_dir(), "canvas")

0 commit comments

Comments
 (0)