Skip to content

Commit

Permalink
Merge pull request #40 from thomaswmorris/passive-dofs
Browse files Browse the repository at this point in the history
Added passive degrees of freedom
  • Loading branch information
mrakitin authored Jul 16, 2023
2 parents 4e29b46 + 21305cb commit cd426f3
Show file tree
Hide file tree
Showing 32 changed files with 1,874 additions and 718 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ exclude =
examples/*.py,
bloptools/tests/test_bayesian_shadow.py,
versioneer.py,
max-line-length = 115
max-line-length = 125
# Ignore some style 'errors' produced while formatting by 'black'
ignore = E203, W503
2 changes: 1 addition & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[settings]
line_length = 115
line_length = 125
multi_line_output = 3
include_trailing_comma = True
3 changes: 3 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ repos:
rev: 23.1.0
hooks:
- id: black
language_version: python3.10
- id: black-jupyter
language_version: python3.10
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion bloptools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from . import bayesian, experiments, tasks # noqa F401
from . import bayesian, devices, tasks # noqa F401
from ._version import get_versions

__version__ = get_versions()["version"]
Expand Down
Loading

0 comments on commit cd426f3

Please sign in to comment.