Show
Ignore:
Timestamp:
11/03/08 16:09:40 (3 years ago)
Author:
lgs
Message:

Makes pyflakes happier

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/examples/scatterchart.py

    r112 r136  
    2222 
    2323import pycha.scatter 
    24  
    25 from lines import lines 
    2624 
    2725def scatterplotChart(output): 
     
    5452 
    5553if __name__ == '__main__': 
    56     output = sys.argv[1] if len(sys.argv) > 1 else 'scatterchart.png' 
     54    if len(sys.argv) > 1: 
     55        output = sys.argv[1] 
     56    else: 
     57        output = 'scatterchart.png' 
    5758    scatterplotChart(output)