@@ -52,7 +52,7 @@ def _set_platform_dir_class() -> type[PlatformDirsABC]:
52
52
53
53
def user_data_dir (
54
54
appname : str | None = None ,
55
- appauthor : str | None | Literal [False ] = None ,
55
+ appauthor : str | Literal [False ] | None = None ,
56
56
version : str | None = None ,
57
57
roaming : bool = False , # noqa: FBT001, FBT002
58
58
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -76,7 +76,7 @@ def user_data_dir(
76
76
77
77
def site_data_dir (
78
78
appname : str | None = None ,
79
- appauthor : str | None | Literal [False ] = None ,
79
+ appauthor : str | Literal [False ] | None = None ,
80
80
version : str | None = None ,
81
81
multipath : bool = False , # noqa: FBT001, FBT002
82
82
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -100,7 +100,7 @@ def site_data_dir(
100
100
101
101
def user_config_dir (
102
102
appname : str | None = None ,
103
- appauthor : str | None | Literal [False ] = None ,
103
+ appauthor : str | Literal [False ] | None = None ,
104
104
version : str | None = None ,
105
105
roaming : bool = False , # noqa: FBT001, FBT002
106
106
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -124,7 +124,7 @@ def user_config_dir(
124
124
125
125
def site_config_dir (
126
126
appname : str | None = None ,
127
- appauthor : str | None | Literal [False ] = None ,
127
+ appauthor : str | Literal [False ] | None = None ,
128
128
version : str | None = None ,
129
129
multipath : bool = False , # noqa: FBT001, FBT002
130
130
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -148,7 +148,7 @@ def site_config_dir(
148
148
149
149
def user_cache_dir (
150
150
appname : str | None = None ,
151
- appauthor : str | None | Literal [False ] = None ,
151
+ appauthor : str | Literal [False ] | None = None ,
152
152
version : str | None = None ,
153
153
opinion : bool = True , # noqa: FBT001, FBT002
154
154
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -172,7 +172,7 @@ def user_cache_dir(
172
172
173
173
def site_cache_dir (
174
174
appname : str | None = None ,
175
- appauthor : str | None | Literal [False ] = None ,
175
+ appauthor : str | Literal [False ] | None = None ,
176
176
version : str | None = None ,
177
177
opinion : bool = True , # noqa: FBT001, FBT002
178
178
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -196,7 +196,7 @@ def site_cache_dir(
196
196
197
197
def user_state_dir (
198
198
appname : str | None = None ,
199
- appauthor : str | None | Literal [False ] = None ,
199
+ appauthor : str | Literal [False ] | None = None ,
200
200
version : str | None = None ,
201
201
roaming : bool = False , # noqa: FBT001, FBT002
202
202
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -220,7 +220,7 @@ def user_state_dir(
220
220
221
221
def user_log_dir (
222
222
appname : str | None = None ,
223
- appauthor : str | None | Literal [False ] = None ,
223
+ appauthor : str | Literal [False ] | None = None ,
224
224
version : str | None = None ,
225
225
opinion : bool = True , # noqa: FBT001, FBT002
226
226
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -274,7 +274,7 @@ def user_desktop_dir() -> str:
274
274
275
275
def user_runtime_dir (
276
276
appname : str | None = None ,
277
- appauthor : str | None | Literal [False ] = None ,
277
+ appauthor : str | Literal [False ] | None = None ,
278
278
version : str | None = None ,
279
279
opinion : bool = True , # noqa: FBT001, FBT002
280
280
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -298,7 +298,7 @@ def user_runtime_dir(
298
298
299
299
def site_runtime_dir (
300
300
appname : str | None = None ,
301
- appauthor : str | None | Literal [False ] = None ,
301
+ appauthor : str | Literal [False ] | None = None ,
302
302
version : str | None = None ,
303
303
opinion : bool = True , # noqa: FBT001, FBT002
304
304
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -322,7 +322,7 @@ def site_runtime_dir(
322
322
323
323
def user_data_path (
324
324
appname : str | None = None ,
325
- appauthor : str | None | Literal [False ] = None ,
325
+ appauthor : str | Literal [False ] | None = None ,
326
326
version : str | None = None ,
327
327
roaming : bool = False , # noqa: FBT001, FBT002
328
328
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -346,7 +346,7 @@ def user_data_path(
346
346
347
347
def site_data_path (
348
348
appname : str | None = None ,
349
- appauthor : str | None | Literal [False ] = None ,
349
+ appauthor : str | Literal [False ] | None = None ,
350
350
version : str | None = None ,
351
351
multipath : bool = False , # noqa: FBT001, FBT002
352
352
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -370,7 +370,7 @@ def site_data_path(
370
370
371
371
def user_config_path (
372
372
appname : str | None = None ,
373
- appauthor : str | None | Literal [False ] = None ,
373
+ appauthor : str | Literal [False ] | None = None ,
374
374
version : str | None = None ,
375
375
roaming : bool = False , # noqa: FBT001, FBT002
376
376
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -394,7 +394,7 @@ def user_config_path(
394
394
395
395
def site_config_path (
396
396
appname : str | None = None ,
397
- appauthor : str | None | Literal [False ] = None ,
397
+ appauthor : str | Literal [False ] | None = None ,
398
398
version : str | None = None ,
399
399
multipath : bool = False , # noqa: FBT001, FBT002
400
400
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -418,7 +418,7 @@ def site_config_path(
418
418
419
419
def site_cache_path (
420
420
appname : str | None = None ,
421
- appauthor : str | None | Literal [False ] = None ,
421
+ appauthor : str | Literal [False ] | None = None ,
422
422
version : str | None = None ,
423
423
opinion : bool = True , # noqa: FBT001, FBT002
424
424
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -442,7 +442,7 @@ def site_cache_path(
442
442
443
443
def user_cache_path (
444
444
appname : str | None = None ,
445
- appauthor : str | None | Literal [False ] = None ,
445
+ appauthor : str | Literal [False ] | None = None ,
446
446
version : str | None = None ,
447
447
opinion : bool = True , # noqa: FBT001, FBT002
448
448
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -466,7 +466,7 @@ def user_cache_path(
466
466
467
467
def user_state_path (
468
468
appname : str | None = None ,
469
- appauthor : str | None | Literal [False ] = None ,
469
+ appauthor : str | Literal [False ] | None = None ,
470
470
version : str | None = None ,
471
471
roaming : bool = False , # noqa: FBT001, FBT002
472
472
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -490,7 +490,7 @@ def user_state_path(
490
490
491
491
def user_log_path (
492
492
appname : str | None = None ,
493
- appauthor : str | None | Literal [False ] = None ,
493
+ appauthor : str | Literal [False ] | None = None ,
494
494
version : str | None = None ,
495
495
opinion : bool = True , # noqa: FBT001, FBT002
496
496
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -544,7 +544,7 @@ def user_desktop_path() -> Path:
544
544
545
545
def user_runtime_path (
546
546
appname : str | None = None ,
547
- appauthor : str | None | Literal [False ] = None ,
547
+ appauthor : str | Literal [False ] | None = None ,
548
548
version : str | None = None ,
549
549
opinion : bool = True , # noqa: FBT001, FBT002
550
550
ensure_exists : bool = False , # noqa: FBT001, FBT002
@@ -568,7 +568,7 @@ def user_runtime_path(
568
568
569
569
def site_runtime_path (
570
570
appname : str | None = None ,
571
- appauthor : str | None | Literal [False ] = None ,
571
+ appauthor : str | Literal [False ] | None = None ,
572
572
version : str | None = None ,
573
573
opinion : bool = True , # noqa: FBT001, FBT002
574
574
ensure_exists : bool = False , # noqa: FBT001, FBT002
0 commit comments