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?
Calder Ruhl Hansen
@Calder
0
Reputation
2
Posts
1
Profile views
0
Followers
0
Following
Best posts made by Calder
This user hasn't posted anything yet.
Latest posts made by Calder
-
RE: Writing code across multiple files
-
Writing code across multiple files
I’m having issues importing code from one file into another. I have a file,
blob.py
, which contains a classBlob
.Blob
has a method calleddraw
, which contains the linefill(*self.color)
.In another file,
post.py
, I want to useBlob
s, so I includedfrom blob import Blob
. When I runpost.py
in DrawBot, I get an error when I callBlob.draw
, saying that the namefill
is not defined. Why is this? How can I get files to know about DrawBot functionality when they are not directly run within DrawBot?