Changeset 7ae2b7f in sasmodels for sasmodels/details.py


Ignore:
Timestamp:
Apr 11, 2016 10:48:41 AM (8 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
fa5fd8d
Parents:
f619de7
Message:

still more linting; ignore numpy types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/details.py

    r4bfd277 r7ae2b7f  
    1 import numpy as np 
     1import numpy as np  # type: ignore 
     2 
     3try: 
     4    from typing import List 
     5except ImportError: 
     6    pass 
     7 
    28 
    39class CallDetails(object): 
     10    parts = None  # type: List["CallDetails"] 
    411    def __init__(self, model_info): 
    512        parameters = model_info.parameters 
Note: See TracChangeset for help on using the changeset viewer.