Re: [code-quality] W0602 global-variable-not-assigned

2017-04-06 Thread Marc 'BlackJack' Rintsch
On 06/04/17 23:30, Josh Powers wrote: > Hi, > > I have code similar to [1] where instead of directly assigning a > dictionary global variable the dictionary method update is used. Right > now this results in a W0602 global-variable-not-assigned. > > Is this expected behavior and if so is there a

Re: [code-quality] W0602 global-variable-not-assigned

2017-04-06 Thread Jakub Wilk
* Josh Powers , 2017-04-06, 14:30: I have code similar to [1] where instead of directly assigning a dictionary global variable the dictionary method update is used. Right now this results in a W0602 global-variable-not-assigned. Is this expected behavior and if so is there a better way to writ

[code-quality] W0602 global-variable-not-assigned

2017-04-06 Thread Josh Powers
Hi, I have code similar to [1] where instead of directly assigning a dictionary global variable the dictionary method update is used. Right now this results in a W0602 global-variable-not-assigned. Is this expected behavior and if so is there a better way to write the above? The actual code givi