Search found 1 match
- Thu Sep 03, 2020 9:37 am
- Forum: Plugin Development Support
- Topic: No max function...?
- Replies: 2
- Views: 4901
Re: No max function...?
An UnboundLocalError is raised when a local variable is referenced before it has been assigned. In most cases this will occur when trying to modify a local variable before it is actually assigned within the local scope. Python doesn't have variable declarations, so it has to figure out the scope of ...