Thank you, that fixed it!
It seems like I need to quit and reopen DrawBot for any changes in blob.py to be seen — is there any easier way?
Posts made by Calder
-
RE: Writing code across multiple filesposted in General Discussion
-
Writing code across multiple filesposted in General Discussion
I’m having issues importing code from one file into another. I have a file,
blob.py, which contains a classBlob.Blobhas a method calleddraw, which contains the linefill(*self.color).In another file,
post.py, I want to useBlobs, so I includedfrom blob import Blob. When I runpost.pyin DrawBot, I get an error when I callBlob.draw, saying that the namefillis not defined. Why is this? How can I get files to know about DrawBot functionality when they are not directly run within DrawBot?