Skip to content

Commit

Permalink
add isort
Browse files Browse the repository at this point in the history
because why not, right?
  • Loading branch information
jcarbaugh committed Dec 15, 2024
1 parent fb05553 commit 3cb67cd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,15 @@ jobs:
- name: Check black
run: |
uv run black --check --diff tap_productboard/
- name: Check pylint
- name: Check isort
run: |
uv run pylint tap_productboard/
uv run isort --check tap_productboard/
- name: Check mypy
run: |
uv run mypy tap_productboard/ --explicit-package-bases
- name: Check pylint
run: |
uv run pylint tap_productboard/
pytest:

Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies = [
[dependency-groups]
dev = [
"black>=24.10.0",
"isort>=5.13.2",
"mypy>=1.13.0",
"pylint>=3.3.2",
"pytest>=8.3.4",
Expand All @@ -30,6 +31,11 @@ tap-productboard = "tap_productboard.tap:TapProductboard.cli"
[tool.hatch.build.targets.wheel]
packages = ["tap_productboard"]

[tool.isort]
multi_line_output = 3
profile = "black"
src_paths = "tap_klaviyo"

[tool.pylint.'MESSAGES CONTROL']
disable = "missing-module-docstring"

Expand Down
1 change: 0 additions & 1 deletion tap_productboard/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from singer_sdk import Stream, Tap
from singer_sdk import typing as th

from tap_productboard.streams import (
CompaniesStream,
ComponentsStream,
Expand Down
2 changes: 2 additions & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3cb67cd

Please sign in to comment.