File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ Release Notes
16
16
17
17
.. release :: Upcoming
18
18
19
+ .. change :: changed
20
+ :tags: path resolve
21
+
22
+ Replaced deprecated appdirs with platformdirs.
23
+
19
24
.. change :: changed
20
25
:tags: events, security
21
26
Original file line number Diff line number Diff line change 30
30
import requests .utils
31
31
import arrow
32
32
import clique
33
- import appdirs
33
+ import platformdirs
34
34
35
35
import ftrack_api
36
36
import ftrack_api .exception
@@ -327,7 +327,7 @@ def __init__(
327
327
# rebuilding types)?
328
328
if schema_cache_path is not False :
329
329
if schema_cache_path is None :
330
- schema_cache_path = appdirs .user_cache_dir ()
330
+ schema_cache_path = platformdirs .user_cache_dir ()
331
331
schema_cache_path = os .environ .get (
332
332
'FTRACK_API_SCHEMA_CACHE_PATH' , schema_cache_path
333
333
)
You can’t perform that action at this time.
0 commit comments