Commit a61d178c authored by nd-02110114's avatar nd-02110114
Browse files

🚨 fix lint error

parent 42b41833
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
Data
====

DeepChem :code:`dc.data` provides the APIs for handling your data.
DeepChem :code:`dc.data` provides APIs for handling your data.

If your data is stored by the file like CSV and SDF, you can use the **Data Loaders**.
The Data Loaders read your data, convert them to features (ex: SMILES to ECFP) and save the features to Dataset class.
+2 −2
Original line number Diff line number Diff line
@@ -46,7 +46,8 @@ extensions = [
autodoc_default_options = {
    'member-order': 'bysource',
    'special-members': True,
    'exclude-members': '__repr__, __str__, __weakref__, __hash__, __eq__, __dict__',
    'exclude-members':
    '__repr__, __str__, __weakref__, __hash__, __eq__, __dict__',
}

# How to represents typehints.
@@ -129,4 +130,3 @@ def linkcode_resolve(domain, info):

  tag = 'master' if 'dev' in release else release
  return "https://github.com/deepchem/deepchem/blob/%s/%s" % (tag, filename)