We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This:
ufoProcessor/Lib/ufoProcessor/__init__.py
Line 652 in 062a1c2
Location
splitAnisotropic()
Line 663 in 062a1c2
But splitAnisotropic returns two dicts:
splitAnisotropic
dict
Lines 866 to 875 in 062a1c2
When MutatorMath is in use, this causes a failure because MutatorMath is expecting a Location object, not a dict: https://github.com/LettError/MutatorMath/blob/94b392ac20648947a37f7166d98bc6988424bfad/Lib/mutatorMath/objects/mutator.py#L226
A test case in the AFDKO test suite exposes this issue.
The text was updated successfully, but these errors were encountered:
Update __init__.py
0cb1a90
fixes #29
Successfully merging a pull request may close this issue.
This:
ufoProcessor/Lib/ufoProcessor/__init__.py
Line 652 in 062a1c2
Location
object tosplitAnisotropic()
and attempts to use the returned results as if they wereLocation
objects, as in:ufoProcessor/Lib/ufoProcessor/__init__.py
Line 663 in 062a1c2
But
splitAnisotropic
returns twodict
s:ufoProcessor/Lib/ufoProcessor/__init__.py
Lines 866 to 875 in 062a1c2
When MutatorMath is in use, this causes a failure because MutatorMath is expecting a
Location
object, not adict
:https://github.com/LettError/MutatorMath/blob/94b392ac20648947a37f7166d98bc6988424bfad/Lib/mutatorMath/objects/mutator.py#L226
A test case in the AFDKO test suite exposes this issue.
The text was updated successfully, but these errors were encountered: