Skip to content

Commit

Permalink
start basic structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Jabbawukis committed Oct 9, 2024
1 parent d534312 commit a051b1c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,7 @@ dev = [

[tool.pylint]
disable = [
"C0103" # Disable snake_case naming convention check
"C0103", # Disable snake_case naming convention check
"C0114", # Missing module docstring
"R0903", # Too few public methods
]
2 changes: 2 additions & 0 deletions run_workflow_locally.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
black src/
pylint src/
2 changes: 1 addition & 1 deletion src/sample_efficiency_evaluation/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from sample_efficiency_evaluation.fact_matcher import FactMatcher
from sample_efficiency_evaluation.fact_matcher import FactMatcher

0 comments on commit a051b1c

Please sign in to comment.