allyd93 / linkage-mapper

Automatically exported from code.google.com/p/linkage-mapper
0 stars 0 forks source link

Two variables being assigned on one line #47

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What convention is not being followed?
Makes it difficult to interpret what is being assigned.

What needs to be done to correct code?
count, statement = 0, "test" 
would change to 
count = 0
statement = "test"

Please provide any additional information below:
Does not apply to function calls that return more than one variable. Appears to 
be only lines beginning with 'count, statement'.

Original issue reported on code.google.com by dkconser...@gmail.com on 15 Mar 2011 at 11:36

GoogleCodeExporter commented 8 years ago

Original comment by mc...@circuitscape.org on 6 Jan 2012 at 6:09