I created a class:
-----boas.py------
def Verb():
global Verbosity
Verbosity = 0
class boas:
print Verbosity
-----goal.py ----
import boas
boas.Verb.Verbosity = 5
This changes it fine, but then I can't seem to call it from back in the main class... any ideas?
-----boas.py------
def Verb():
global Verbosity
Verbosity = 0
class boas:
print Verbosity
-----goal.py ----
import boas
boas.Verb.Verbosity = 5
This changes it fine, but then I can't seem to call it from back in the main class... any ideas?