Oh and Risk,
I know I was calling the class object.
class 1 creates the instance object
class 2 tries to use the instance object
so the problem is how to make class 2 knowledgable of instance object? I guess
I could pass the instance object into the class, since class1 creates the
instance and
No offense taken. I'll get getting the Google Python Style Guide today. I'll
package up the code tonight and it to the group. Fortunately ( or
unfortunately), it is all in one file right now.
On Aug 2, 2010, at 10:31 PM, rantingrick wrote:
>
> Chris,
>
> It looks as if you are calling a cl
Chris,
It looks as if you are calling a class object and not an instance
object. However i cannot be for sure because you are using improper
Python style. All classes should be capwords. But here again you have
used camelcase for the class identifiers "radarWidgets" and
"mainDisplay", which is ba