Skip to content

Commit 9cfedc7

Browse files
committed
Fix static typing issue.
Signed-off-by: Thomas Mansencal <[email protected]>
1 parent eecb841 commit 9cfedc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opencolorio_config_aces/utilities/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ def git_describe() -> str:
524524
try: # pragma: no cover
525525
version = subprocess.check_output(
526526
["git", "describe"], # noqa: S603, S607
527-
cwd=opencolorio_config_aces.__path__[0], # pyright: ignore
527+
cwd=opencolorio_config_aces.__path__[0],
528528
stderr=subprocess.STDOUT,
529529
).strip()
530530
version = version.decode("utf-8")

0 commit comments

Comments
 (0)