Skip to content
Snippets Groups Projects
Commit 4d89d6cc authored by René Heß's avatar René Heß
Browse files

PEP8

parent 745d978e
No related branches found
No related tags found
No related merge requests found
......@@ -6,12 +6,7 @@ Should also contain the entrypoint methods.
from __future__ import absolute_import
# Configure loggers
import logging.config
from os import path
log_file_path = path.join(path.dirname(path.abspath(__file__)), 'logging.conf')
logging.config.fileConfig(log_file_path)
import loopy
......@@ -30,8 +25,11 @@ from dune.perftool.pdelab.localoperator import (generate_localoperator_basefile,
name_localoperator_file)
from dune.perftool.ufl.preprocess import preprocess_form
from os.path import splitext, basename
from os.path import splitext, basename, join, dirname, abspath
# Configure loggers
log_file_path = join(dirname(abspath(__file__)), 'logging.conf')
logging.config.fileConfig(log_file_path)
# Disable loopy caching before we do anything else!
loopy.CACHING_ENABLED = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment