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
We currently have the function cocos.identify_cocos and the class cocos.Transform. In the former case, the cleanest way to use it is:
cocos.identify_cocos
cocos.Transform
from pyloidal.cocos import identify_cocos c = identify_cocos(...)
In the latter case, to make it clear what the class does:
from pyloidal import cocos t = cocos.Transform(...)
These styles should be unified, either by renaming identify_cocos to identify, or by renaming Transform to TransformCOCOS/COCOSTransform.
identify_cocos
identify
Transform
TransformCOCOS
COCOSTransform
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We currently have the function
cocos.identify_cocos
and the classcocos.Transform
. In the former case, the cleanest way to use it is:In the latter case, to make it clear what the class does:
These styles should be unified, either by renaming
identify_cocos
toidentify
, or by renamingTransform
toTransformCOCOS
/COCOSTransform
.The text was updated successfully, but these errors were encountered: