-
Notifications
You must be signed in to change notification settings - Fork 167
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
Remove transformation of variables #266
Conversation
This stops the type checker from transforming variables, making it more strict. Magically changing the variable type was a little janky to begin with, so I think this is the right thing to do. Should partially fix #255
@mhahn any thoughts on this? |
If we're going to do this, I think we should prevent any transformations of the variable. ie. |
Right now you could still transform the value with: https://github.com/remind101/stacker/pull/266/files#diff-9e12e7feca740fe22caedce88b419cbcR196 |
Ok, @mhahn, I think this should be good to go now. Let me know what you think. |
…_typing Remove transformation of variables
This stops the type checker from transforming variables, making it more
strict. Magically changing the variable type was a little janky to begin
with, so I think this is the right thing to do.
Should partially fix #255