Skip to content

Commit cd378a6

Browse files
authored
Fix return type in cluster_pdb_mmcifs.py (#83)
1 parent c671d22 commit cd378a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/cluster_pdb_mmcifs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,10 @@ def parse_chain_sequences_and_interfaces_from_mmcif(
264264
return sequences, interface_chain_ids
265265

266266

267+
@typecheck
267268
def parse_chain_sequences_and_interfaces_from_mmcif_file(
268269
cif_filepath: str, assume_one_based_residue_ids: bool = False
269-
) -> Tuple[str, Dict[str, Dict[str, str]], Set[str]]:
270+
) -> Tuple[str, Dict[str, str], Set[str]]:
270271
"""Parse chain sequences and interfaces from an mmCIF file."""
271272
structure_id = os.path.splitext(os.path.basename(cif_filepath))[0]
272273
try:

0 commit comments

Comments
 (0)