Changeset 485 for elixir/trunk/examples

Show
Ignore:
Timestamp:
10/01/09 16:28:12 (3 years ago)
Author:
ged
Message:

fix a few cosmetic issues reported by pyflakes (mostly unused imports)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/examples/videostore/setup.py

    r11 r485  
    88    name="videostore", 
    99    version=version, 
    10      
     10 
    1111    # uncomment the following lines if you fill them out in release.py 
    1212    #description=description, 
     
    1616    #download_url=download_url, 
    1717    #license=license, 
    18      
     18 
    1919    install_requires = [ 
    2020        "TurboGears >= 1.0", 
    21         "SQLAlchemy",  
     21        "SQLAlchemy", 
    2222    ], 
    2323    scripts = ["start-videostore.py"], 
     
    2929        # Use keywords if you'll be adding your package to the 
    3030        # Python Cheeseshop 
    31          
     31 
    3232        # if this has widgets, uncomment the next line 
    3333        # 'turbogears.widgets', 
    34          
     34 
    3535        # if this has a tg-admin command, uncomment the next line 
    3636        # 'turbogears.command', 
    37          
     37 
    3838        # if this has identity providers, uncomment the next line 
    3939        # 'turbogears.identity.provider', 
    40      
     40 
    4141        # If this is a template plugin, uncomment the next line 
    4242        # 'python.templating.engines', 
    43          
     43 
    4444        # If this is a full application, uncomment the next line 
    4545        # 'turbogears.app', 
     
    5454        # the Cheeseshop, uncomment the next line 
    5555        # 'Framework :: TurboGears :: Applications', 
    56          
     56 
    5757        # if this is a package that includes widgets that you'll distribute 
    5858        # through the Cheeseshop, uncomment the next line 
     
    6161    test_suite = 'nose.collector', 
    6262    ) 
    63      
     63