Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdent committed Nov 27, 2024
1 parent fb60996 commit 74441c7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions chai_lab/data/dataset/msas/colabfold.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@
# Licensed under the Apache License, Version 2.0.
# See the LICENSE file for details.

"""
N.B. this code is copied from https://github.com/sokrypton/ColabFold
and follows the license in that repository
"""

import logging
import os
import random
import tarfile
import tempfile
import time
import typing
from pathlib import Path

import pandas as pd
Expand All @@ -29,6 +25,9 @@
)


# N.B. this code is copied from https://github.com/sokrypton/ColabFold
# and follows the license in that repository
@typing.no_type_check # Original ColabFold code was not well typed
def _run_mmseqs2(
x,
prefix,
Expand Down

0 comments on commit 74441c7

Please sign in to comment.