-
-
Notifications
You must be signed in to change notification settings - Fork 142
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
BaseImage Spam #252
Labels
Comments
I think that baseimage str is unnecesary, should I remove it? def __str__(self):
"""
:return: String definition of the object
:rtype: str
"""
msg = 'BaseImage Object {3}\n\tPath: {0}\n\tDrawing mode: {1}\n\tDrawing offset: {2}'
return msg.format(self._filepath, self._drawing_mode, self._drawing_offset, hex(id(self)))
def __repr__(self):
"""
Prints the object.
:return: None
"""
print(self.__str__()) |
Agreed. |
Ok, I'll remove it, and along with #251 I will create another v3 version. These changes will also be included in v4 |
This was referenced Jan 14, 2021
New v3.5.1 uploaded :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Every time I debug a BaseImage, this gets posted into the console:
It's quite annoying, can I turn it off somehow?
The text was updated successfully, but these errors were encountered: