Add-on: fix mypy warning
No functional changes.
This commit is contained in:
parent
59f41d0546
commit
413e5c71e2
@ -212,7 +212,8 @@ class JobTypePropertyGroup:
|
|||||||
# This changes blendfile-relative paths to absolute.
|
# This changes blendfile-relative paths to absolute.
|
||||||
# It does not resolve `..` entries, though.
|
# It does not resolve `..` entries, though.
|
||||||
abs_unclean = Path(bpy.path.abspath(str(filepath)))
|
abs_unclean = Path(bpy.path.abspath(str(filepath)))
|
||||||
return bpathlib.make_absolute(abs_unclean)
|
abs_clean: Path = bpathlib.make_absolute(abs_unclean)
|
||||||
|
return abs_clean
|
||||||
|
|
||||||
|
|
||||||
# Mapping from AvailableJobType.setting.type to a callable that converts a value
|
# Mapping from AvailableJobType.setting.type to a callable that converts a value
|
||||||
|
Loading…
x
Reference in New Issue
Block a user