Skip to content

Commit cb86749

Browse files
committed
Remove author tags from module docstrings
1 parent 69f5efe commit cb86749

File tree

4 files changed

+8
-17
lines changed

4 files changed

+8
-17
lines changed

rmgpy/molecule/atomtypedatabase.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,11 @@
2828
# #
2929
###############################################################################
3030

31-
'''
32-
Created on Sep 4, 2014
33-
34-
@author: nickvandewiele
35-
36-
This creates atomTypes and assignes them with the correct bond/lonePairs/charge
31+
"""
32+
This creates atomTypes and assigns them with the correct bond/lonePairs/charge
3733
Used in isomorphismTest.py to create group_atomtypes
38-
'''
34+
"""
35+
3936
class AbstractAtomType(object):
4037
def __init__(self, element = None, label=None, double=-1, triple=-1, benzene=-1, lp=-1, chrg=-1):
4138
self.element = element

rmgpy/qm/qmverifier.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
###############################################################################
3030

3131
"""
32-
Created on Apr 29, 2012
33-
34-
@author: nmvdewie
32+
This module contains the QMVerifier class for confirming quantum job success.
3533
"""
3634

3735
import os

rmgpy/qm/symmetry.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@
2929
###############################################################################
3030

3131
"""
32-
Created on Apr 29, 2012
33-
@author: nmvdewie and rwest
34-
3532
Module that collects all classes related to symmetry of molecules
3633
"""
3734

rmgpy/transport.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,10 @@
2828
# #
2929
###############################################################################
3030

31-
'''
32-
Created on Feb 26, 2013
31+
"""
32+
This module contains the TransportData class for storing transport properties.
33+
"""
3334

34-
@author: Jake
35-
'''
3635
from rmgpy import quantity
3736
from rmgpy.quantity import DipoleMoment, Energy, Length, Volume
3837
import rmgpy.constants as constants

0 commit comments

Comments
 (0)