Skip to content

Commit

Permalink
fixed Flake8 lint issues with whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
drewschaub committed Feb 17, 2025
1 parent 538abae commit 65da509
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions protein_design_tools/core/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file can be empty or contain initialization code for the package
2 changes: 1 addition & 1 deletion protein_design_tools/core/protein_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def remove_residues_by_name(self, residue_name: str) -> None:
----------
residue_name : str
Residue name to be removed (e.g. 'HOH' for water).
"""
for chain in self.chains:
# Keep only residues whose name != residue_name
Expand Down
1 change: 1 addition & 0 deletions protein_design_tools/io/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file can be empty or contain initialization code for the package
2 changes: 1 addition & 1 deletion protein_design_tools/io/pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _parse_pdb_content(
-------
ProteinStructure
The populated ProteinStructure object.
"""
for line in content:
if line.startswith("ATOM") or line.startswith("HETATM"):
Expand Down
1 change: 1 addition & 0 deletions protein_design_tools/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file can be empty or contain initialization code for the package

0 comments on commit 65da509

Please sign in to comment.