From a716c89a3641a7bb8d07b445c1fbb6e03685c93c Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Fri, 29 May 2020 20:49:47 -0700 Subject: [PATCH] Remove unused argument from Atom() constructor. --- propka/atom.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/propka/atom.py b/propka/atom.py index 40e15b2..1e87af2 100644 --- a/propka/atom.py +++ b/propka/atom.py @@ -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