Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ target/

# poetry
poetry.lock
pyproject.toml

# celery beat schedule file
celerybeat-schedule
Expand Down
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[build-system]
requires = ["setuptools>=45.0", "versioneer-518", "wheel"]
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310']

[tool.mypy]
disable_error_code = [
'misc',
'import'
]
files = [
"tableauserverclient",
"test"
]
show_error_codes = true
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def update_hyper_data(
*,
request_id: str,
actions: Sequence[Mapping],
payload: Optional[FilePath] = None
payload: Optional[FilePath] = None,
) -> JobItem:
if isinstance(datasource_or_connection_item, DatasourceItem):
datasource_id = datasource_or_connection_item.id
Expand Down