Remove unused argument from Atom() constructor.

This commit is contained in:
Nathan Baker
2020-05-29 20:49:47 -07:00
parent 5010d9fa14
commit a716c89a36

View File

@@ -29,12 +29,11 @@ STR_FMT = (
class Atom(object):
"""Atom class - contains all atom information found in the PDB file"""
def __init__(self, line=None, _=False):
def __init__(self, line=None):
"""Initialize Atom object.
Args:
line: Line from a PDB file to set properties of atom.
_: TODO - this does not appear to be used. Can we remove it?
"""
self.occ = None
self.numb = None