From 97fc8a4029bd830d0d26eda68a3331e9f1ccdbf8 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Tue, 3 Sep 2019 15:41:41 -0700 Subject: [PATCH] following python3 recommendations --- installation/symlink_Processing.py | 7 ++++--- python/damask/solver/__init__.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/installation/symlink_Processing.py b/installation/symlink_Processing.py index 90497c0eb..2f4c99d34 100755 --- a/installation/symlink_Processing.py +++ b/installation/symlink_Processing.py @@ -1,8 +1,9 @@ #!/usr/bin/env python3 -# -*- coding: UTF-8 no BOM -*- -# Makes postprocessing routines acessible from everywhere. -import os,sys +# Makes postprocessing routines accessible from everywhere. +import os +import sys + import damask damaskEnv = damask.Environment() diff --git a/python/damask/solver/__init__.py b/python/damask/solver/__init__.py index 90ae1298b..70f48eb26 100644 --- a/python/damask/solver/__init__.py +++ b/python/damask/solver/__init__.py @@ -1,4 +1,4 @@ -"""Tools to control the various BVP solvers""" +"""Tools to control the various solvers.""" from .solver import Solver # noqa from .marc import Marc # noqa