I have been just getting more and more into shaping my addons into something more useful for myself and after watching a video short on Youtube I got to thinking about what I am working with.
Does it make sense to make smaller functions for similar things that occur across many operators like polls or basic common parts like checking if the selection is an object and with material and nodes etc. Should I be doing this to streamline the code more, or is it expected that a novice is going to draw out a lot of steps to get working operators?
edit: like many times using things in the execute like scene = context.scene and obj = context.object. That right there after making so many operators, I should have made a simple function that stated that and reused it across some 30 or so operators, right?