Changeset 8e5c36d in sasview


Ignore:
Timestamp:
Nov 1, 2017 7:54:22 AM (6 years ago)
Author:
GitHub <noreply@…>
Branches:
master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
5ff08e7, 96c9cf1, a52f32f
Parents:
acde566 (diff), c16ffe7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jeff Krzywon <krzywon@…> (11/01/17 07:54:22)
git-committer:
GitHub <noreply@…> (11/01/17 07:54:22)
Message:

Merge pull request #119 from llimeht/test-unused-import

Remove unused pylint import in test

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • test/fileconverter/test/utest_nxcansas_writer.py

    r5a8cdbb rc16ffe7  
    33 
    44import os 
    5 import pylint 
    65import unittest 
    76import warnings 
  • src/sas/sasgui/perspectives/calculator/model_editor.py

    r69363c7 r1c206d9  
    332332            msg = ("%s is not a valid Python name. Only alphanumeric \n" \ 
    333333                   "and underscore allowed" % self.name) 
    334  
     334         
    335335        #Now check if the name already exists 
    336336        if not self.overwrite_name and self.good_name: 
     
    338338            list_fnames = os.listdir(self.plugin_dir) 
    339339            # fake existing regular model name list 
    340             m_list = [model.name + ".py" for model in self.model_list] 
     340            m_list = [model + ".py" for model in self.model_list] 
    341341            list_fnames.append(m_list) 
    342342            if t_fname in list_fnames and title != mname: 
Note: See TracChangeset for help on using the changeset viewer.