Skip to content

Commit

Permalink
fix type comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Arian Jamasb committed Jul 8, 2024
1 parent a3bf27b commit 108ead6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions biopandas/mmtf/pandas_mmtf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@

from __future__ import annotations

import os
import copy
import gzip
import os
import warnings
from string import ascii_uppercase
from typing import Any, Dict, List, Union
from warnings import warn

import numpy as np
import pandas as pd
from biopandas.constants import protein_letters_3to1_extended
from looseversion import LooseVersion

from mmtf import MMTFDecoder, MMTFEncoder, fetch, parse, parse_gzip

from biopandas.constants import protein_letters_3to1_extended

from ..pdb.engines import amino3to1dict, pdb_df_columns, pdb_records

pd_version = LooseVersion(pd.__version__)
Expand Down

0 comments on commit 108ead6

Please sign in to comment.