Skip to content

Commit

Permalink
fix: add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
bodyangug committed Oct 4, 2023
1 parent 09b2cfc commit 6783f6d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[tool.black]
line-length = 79

[tool.isort]
profile = "black"
line_length = 79

[tool.flake8]
max-line-length = 79
extend-ignore = "E203, E501"
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,9 @@
from bingo_elastic.elastic import ElasticRepository, IndexName
from bingo_elastic.model import helpers
from bingo_elastic.model.record import IndigoRecord
from bingo_elastic.queries import (
BaseMatch,
EuclidSimilarityMatch,
TanimotoSimilarityMatch,
TverskySimilarityMatch,
query_factory,
)
from bingo_elastic.queries import (BaseMatch, EuclidSimilarityMatch,
TanimotoSimilarityMatch,
TverskySimilarityMatch, query_factory)
from dotenv import load_dotenv
from elasticsearch import Elasticsearch as NativeElastic
from flask import Blueprint, request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,9 @@

from .common import config
from .common.util import highlight
from .validation import (
IndigoAutomapSchema,
IndigoCalculateSchema,
IndigoCheckSchema,
IndigoRendererSchema,
IndigoRequestSchema,
)
from .validation import (IndigoAutomapSchema, IndigoCalculateSchema,
IndigoCheckSchema, IndigoRendererSchema,
IndigoRequestSchema)

tls = local()

Expand Down

0 comments on commit 6783f6d

Please sign in to comment.