Changeset 4661


Ignore:
Timestamp:
Aug 7, 2007, 10:34:13 AM (17 years ago)
Author:
duncan
Message:

getting code closer to what the style guide suggests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/geospatial_data/geospatial_data.py

    r4660 r4661  
    10321032            if len(header) != len(numbers):
    10331033                file_pointer.close()
    1034                 msg = "File load error.  There might be a problem with the file header"
     1034                msg = "File load error.  \
     1035                There might be a problem with the file header"
    10351036                raise SyntaxError, msg
    10361037            for i,num in enumerate(numbers):
     
    13831384    from pylab import plot, ion, hold,savefig,semilogx,plotting
    13841385
    1385     if north_boundary or south_boundary or east_boundary or west_boundary is None:
     1386    if north_boundary or south_boundary or east_boundary or \
     1387           west_boundary is None:
    13861388        no_boundary=True
    13871389       
     
    14191421
    14201422
    1421     alphas = [0.000001, 0.00001, 0.0001, 0.001, 0.01, 0.1, 1.0, 10.0, 100.0,1000.0,100000.0]
     1423    alphas = [0.000001, 0.00001, 0.0001, 0.001, 0.01, 0.1,
     1424              1.0, 10.0, 100.0,1000.0,100000.0]
    14221425    #alphas = [0.001,1,100]
    14231426    domains = {}
Note: See TracChangeset for help on using the changeset viewer.