You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pbsync/__main__.py
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@
3
3
importmultiprocessing
4
4
importos
5
5
importsys
6
+
fromastimportliteral_eval
6
7
fromfunctoolsimportpartial
7
8
frompathlibimportPath
8
-
fromastimportliteral_eval
9
9
10
10
frompbpyimport (
11
11
pbbutler,
@@ -285,7 +285,7 @@ def main(argv):
285
285
)
286
286
parser.add_argument(
287
287
"--uproject",
288
-
help=f"Multi-project folders only: project name to choose from. If not provided, it will prompt the user for one, or in CI environments, use the first one found.",
288
+
help="Multi-project folders only: project name to choose from. If not provided, it will prompt the user for one, or in CI environments, use the first one found.",
# Attempt to parse literal as a python literal if its type does not match the type of the default value.
375
375
# fixes bugs where config.get(key) is ran on a key which is expected to be boolean
376
376
# if the key is set in config, its boolean implicit cast will always be true, since strings 'False' and 'True' both evaluate to True when converting to bool.
0 commit comments