Skip to content

Commit

Permalink
Downgrade black, fix removed imports from __init__.py (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova committed Jan 9, 2024
2 parents 8b0557a + 22bd951 commit c67e8aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -7,7 +7,7 @@ repos:
- "--fix"
- "--exit-non-zero-on-fix"
- repo: https://github.com/psf/black
rev: 23.11.0
rev: 23.10.0 # keep this version for Ubuntu support
hooks:
- id: black
- repo: https://github.com/pocc/pre-commit-hooks
Expand Down
5 changes: 5 additions & 0 deletions dynamic_stack_decider/dynamic_stack_decider/__init__.py
@@ -0,0 +1,5 @@
from .abstract_action_element import AbstractActionElement
from .abstract_decision_element import AbstractDecisionElement
from .dsd import DSD

__all__ = [DSD, AbstractDecisionElement, AbstractActionElement]

0 comments on commit c67e8aa

Please sign in to comment.