-
Notifications
You must be signed in to change notification settings - Fork 668
[DYN-2988] Add custom fixer for instance.None #11022
New issue
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
Conversation
src/PythonMigrationViewExtension/MigrationAssistant/custom_fixers/fix_none.py
Outdated
Show resolved
Hide resolved
src/PythonMigrationViewExtension/MigrationAssistant/migrate_2to3.py
Outdated
Show resolved
Hide resolved
|
Please also add a test. You can base on the ones here https://github.com/DynamoDS/Dynamo/blob/master/test/DynamoCoreTests/PythonMigrationAssistantTests.cs |
mmisol
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Just one final comment regarding the output folder name.
src/PythonMigrationViewExtension/PythonMigrationViewExtension.csproj
Outdated
Show resolved
Hide resolved
src/PythonMigrationViewExtension/MigrationAssistant/custom_fixers/fix_none.py
Outdated
Show resolved
Hide resolved
|
@mmisol changed the name as suggested. @mjkkirschner added some code comments to fixer. |
* add custom fixer for instance.None * cleanup * cleanup * add post build step to copy custom fixers to output directory * add unit test * review comments * edit fixer code comments
* [DYN-2988] Add custom fixer for instance.None (#11022) * add custom fixer for instance.None * cleanup * cleanup * add post build step to copy custom fixers to output directory * add unit test * review comments * edit fixer code comments * turn on anti-aliasing (#11068) * update base images for image comparison tests after anti-aliasing fix
* [DYN-2988] Add custom fixer for instance.None (#11022) * add custom fixer for instance.None * cleanup * cleanup * add post build step to copy custom fixers to output directory * add unit test * review comments * edit fixer code comments * turn on anti-aliasing (#11068) * update base images for image comparison tests after anti-aliasing fix * Guard against parser errors detected while migrating python code (#11080) * guard against parser errors detected while migrating python code * transfer Error state between side-by-side and inline diff views * revert whitespace in unchanged file * disable accept button for error state * update migration message * address review comments
Purpose
https://jira.autodesk.com/browse/DYN-2988
Add custom fixer for:
Declarations
Check these if you believe they are true
*.resxfilesReviewers
@SHKnudsen
@mmisol
@mjkkirschner