Changeset e65c3ba in sasmodels for sasmodels/sasview_model.py


Ignore:
Timestamp:
Nov 28, 2017 4:09:34 PM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
32398dc
Parents:
110f69c
Message:

lint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/sasview_model.py

    r17db833 re65c3ba  
    186186    sys.modules['sas.models'] = sas.sascalc.fit 
    187187    sas.models = sas.sascalc.fit 
    188  
    189188    import sas.models 
    190189    from sasmodels.conversion_table import CONVERSION_TABLE 
     190 
    191191    for new_name, conversion in CONVERSION_TABLE.get((3, 1, 2), {}).items(): 
    192192        # CoreShellEllipsoidModel => core_shell_ellipsoid:1 
     
    202202def MultiplicationModel(form_factor, structure_factor): 
    203203    # type: ("SasviewModel", "SasviewModel") -> "SasviewModel" 
     204    """ 
     205    Returns a constructed product model from form_factor and structure_factor. 
     206    """ 
    204207    model_info = product.make_product_info(form_factor._model_info, 
    205208                                           structure_factor._model_info) 
Note: See TracChangeset for help on using the changeset viewer.