Skip to content

Commit

Permalink
data ingestion
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkolo committed Aug 29, 2024
1 parent 0994045 commit 1bf50fb
Show file tree
Hide file tree
Showing 7 changed files with 280 additions and 63 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,6 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Database
my_lancedb
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
- id: end-of-file-fixer # Makes sure files end in a newline and only a newline.
- id: mixed-line-ending
args: [--fix=lf] # single control character (\n, ASCII code 10), most universal
# - id: requirements-txt-fixer # Sorts entries in requirements.txt
- id: requirements-txt-fixer # Sorts entries in requirements.txt
- id: check-case-conflict # Check for files with names that would conflict on a case-insensitive filesystem

- repo: https://github.com/asottile/pyupgrade
Expand All @@ -29,12 +29,12 @@ repos:
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.8.7
hooks:
- id: nbqa-black
- id: nbqa-pyupgrade
args: ["--py312-plus"]
- id: nbqa-isort
args: ["--float-to-top"]
args: ["--float-to-top", "--profile=black"]
- id: nbqa-flake8
args: ["--extend-ignore=E501"]
- id: nbqa-black
- id: nbqa-pyupgrade
args: ["--py312-plus"]
# - id: nbqa-pylint # too many complaints
# - id: nbqa-mypy # too many complaints
Loading

0 comments on commit 1bf50fb

Please sign in to comment.