Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PEP8 formatting changes #192

Merged
merged 2 commits into from
Feb 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AIMSim/ops/clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Cluster:
for the K-Medoids algorithm [1]. This method is useful
when the molecular descriptors are continuous / Euclidean
since it relies on the existence of a sensible medoid.
'complete_linkage', 'complete': complete linkage agglomerative
hierarchical clustering [2].
'complete_linkage', 'complete':
Complete linkage agglomerative hierarchical clustering [2].
'average_linkage', 'average':
average linkage agglomerative hierarchical clustering [2].
'single_linkage', 'single':
Expand Down
13 changes: 7 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@
import os
import codecs
import sys
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('..'))


# -- Project information -----------------------------------------------------
import AIMSim


import AIMSim
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('..'))


# -- Project information -----------------------------------------------------
project = 'AIMSim'
copyright = '2022, Jackson Burns, Himaghna Bhattacharjee'
author = 'Jackson Burns, Himaghna Bhattacharjee'
# The full version, including alpha/beta/rc tags


def read(rel_path):
"""
"""
Expand Down Expand Up @@ -55,7 +56,7 @@ def skip(app, what, name, obj, would_skip, options):
def setup(app):
app.connect("autodoc-skip-member", skip)


release = get_version("../AIMSim/__init__.py")


Expand Down