Changeset b297ba9 in sasmodels for sasmodels/sasview_model.py


Ignore:
Timestamp:
Mar 20, 2019 7:03:50 PM (5 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:
4e28511
Parents:
0d362b7
Message:

lint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/sasview_model.py

    rfd7291e rb297ba9  
    1515import traceback 
    1616import logging 
    17 from os.path import basename, splitext, abspath, getmtime 
     17from os.path import basename, splitext, abspath 
    1818try: 
    1919    import _thread as thread 
     
    3131from . import modelinfo 
    3232from .details import make_kernel_args, dispersion_mesh 
    33 from .kernelcl import reset_environment 
    3433 
    3534# pylint: disable=unused-import 
     
    688687                     qx,     # type: Sequence[float] 
    689688                     qy=None # type: Optional[Sequence[float]] 
    690                      ): 
     689                    ): 
    691690        # type: (...) -> Tuple[np.ndarray, Callable[[], collections.OrderedDict[str, np.ndarray]]] 
    692691        """ 
     
    938937    # type: () -> None 
    939938    """ 
    940     Load and run cylinder model as sas-models-CylinderModel 
     939    Load and run cylinder model as sas.models.CylinderModel 
    941940    """ 
    942941    if not SUPPORT_OLD_STYLE_PLUGINS: 
     
    980979 
    981980def magnetic_demo(): 
     981    """ 
     982    Demostrate call to magnetic model. 
     983    """ 
    982984    Model = _make_standard_model('sphere') 
    983985    model = Model() 
Note: See TracChangeset for help on using the changeset viewer.