From 01e6970236cdbfbabd29653f9d939768621380d3 Mon Sep 17 00:00:00 2001 From: djbajic Date: Thu, 30 Jul 2020 12:29:26 +0200 Subject: [PATCH] removed encoding tags (unnecessary in python3) --- cometspy/comets.py | 10 +++++----- cometspy/layout.py | 2 -- cometspy/model.py | 1 - cometspy/params.py | 1 - 4 files changed, 5 insertions(+), 9 deletions(-) diff --git a/cometspy/comets.py b/cometspy/comets.py index eab6532..0c28365 100644 --- a/cometspy/comets.py +++ b/cometspy/comets.py @@ -1,4 +1,9 @@ +''' +The comets module runs COMETS simulations and stores output. +For more information see https://segrelab.github.io/comets-manual/ +''' + import re import subprocess as sp import pandas as pd @@ -8,11 +13,6 @@ # from cometspy.layout import layout # from cometspy.params import params -''' -The comets module runs COMETS simulations and stores output. -For more information see https://segrelab.github.io/comets-manual/ -''' - __author__ = "Djordje Bajic, Jean Vila, Jeremy Chacon" __copyright__ = "Copyright 2019, The COMETS Consortium" __credits__ = ["Djordje Bajic", "Jean Vila", "Jeremy Chacon"] diff --git a/cometspy/layout.py b/cometspy/layout.py index 35575a6..b2469c4 100644 --- a/cometspy/layout.py +++ b/cometspy/layout.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - ''' The layout module handles COMETS simulation layouts, including media and spatial arrangement. diff --git a/cometspy/model.py b/cometspy/model.py index 8a7656b..6d16ec7 100644 --- a/cometspy/model.py +++ b/cometspy/model.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- ''' The model module handles COMETS models diff --git a/cometspy/params.py b/cometspy/params.py index dba486e..331e952 100644 --- a/cometspy/params.py +++ b/cometspy/params.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- ''' The params module handles COMETS simulation parameters.