Change file name to conform to snake_case

This commit is contained in:
Wojciech Kozlowski 2019-07-30 19:28:44 +02:00
parent 9582ce9ef2
commit da5a114bc1
3 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
from .loadSettings import PYLG_ENABLE from .load_settings import PYLG_ENABLE
if PYLG_ENABLE: if PYLG_ENABLE:
from .pylg import TraceFunction, trace from .pylg import TraceFunction, trace

View File

@ -29,7 +29,7 @@ import os
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# Load settings. # Load settings.
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
from .loadSettings import * from .load_settings import *
class ClassNameStack(object): class ClassNameStack(object):