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
import munch x=munch.Munch() type(x.copy()) --> dict
I want this to give me a munch object
The text was updated successfully, but these errors were encountered:
import munch x=munch.Munch() cp=x.copy() y=munch.Munch(cp)
type(y) —> munch.Munch
Sorry, something went wrong.
Having a workaround is not the same as having a solution. I think copy should generally return the correct type. I'm re-opening.
copy
implement copy method. Fixes issue #10
4d47fcc
Fixed.
No branches or pull requests
import munch
x=munch.Munch()
type(x.copy())
--> dict
I want this to give me a munch object
The text was updated successfully, but these errors were encountered: