Skip to content

Commit

Permalink
removed encoding tags (unnecessary in python3)
Browse files Browse the repository at this point in the history
  • Loading branch information
djbajic committed Jul 30, 2020
1 parent ec24783 commit 01e6970
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
10 changes: 5 additions & 5 deletions cometspy/comets.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"]
Expand Down
2 changes: 0 additions & 2 deletions cometspy/layout.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-

'''
The layout module handles COMETS simulation layouts, including
media and spatial arrangement.
Expand Down
1 change: 0 additions & 1 deletion cometspy/model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-

'''
The model module handles COMETS models
Expand Down
1 change: 0 additions & 1 deletion cometspy/params.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-

'''
The params module handles COMETS simulation parameters.
Expand Down

0 comments on commit 01e6970

Please sign in to comment.