Changeset 9706d88 in sasview for src/sas/sasgui/perspectives/fitting


Ignore:
Timestamp:
Sep 22, 2017 12:21:37 PM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
d3b0c77, 574adc7
Parents:
ab0b93f
Message:

merge fixups

Location:
src/sas/sasgui/perspectives/fitting
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/fitpage.py

    r69363c7 r9706d88  
    17261726                and not self.temp_multi_functional: 
    17271727            return None 
    1728         print("_set_fun_box_list", self.model.name) 
    17291728        # Get the func name list 
    17301729        list = self.model.fun_list 
  • src/sas/sasgui/perspectives/fitting/fitting.py

    r69363c7 r9706d88  
    5151from sas.sasgui.perspectives.calculator.model_editor import TextDialog 
    5252from sas.sasgui.perspectives.calculator.model_editor import EditorWindow 
     53from sas.sasgui.perspectives.calculator.pyconsole import PyConsole 
    5354 
    5455from .fitting_widgets import DataDialog 
     
    242243        Get the python editor panel 
    243244        """ 
    244         from sas.sasgui.perspectives.calculator.pyconsole import PyConsole 
    245  
    246245        event_id = event.GetId() 
    247246        label = self.edit_menu.GetLabel(event_id) 
     
    368367                        if model and new_model != model: 
    369368                            page._on_select_model(keep_pars=True) 
    370                     if hasattr(page, 'structurebox'): 
     369                    if hasattr(page, "structurebox"): 
    371370                        selected_name = page.structurebox.GetStringSelection() 
    372371 
     
    17691768            @param unsmeared_error: data error, rescaled to unsmeared model 
    17701769        """ 
    1771 <<<<<<< HEAD 
    1772  
    1773 ======= 
    1774 >>>>>>> master 
    17751770        number_finite = np.count_nonzero(np.isfinite(y)) 
    17761771        np.nan_to_num(y) 
Note: See TracChangeset for help on using the changeset viewer.