Skip to content

Commit 8e94324

Browse files
feat(api): api update
1 parent 1d6a595 commit 8e94324

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 107
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-a21c54897dbe702d2a611facfcc45f349e41f8f627536dcd21fe8aa156919ed6.yml
3-
openapi_spec_hash: 03c623a71dfb82c0a4e386a5028b27a5
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-0f348c62b98cf2720ee3067d607cafcd3b7ba1d1af2ef83d7932a2c2895f2248.yml
3+
openapi_spec_hash: 7c840c6f09e5aca5bce65f225bf67414
44
config_hash: acdf4142177ed1932c2d82372693f811

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,8 @@ select = [
224224
"B",
225225
# remove unused imports
226226
"F401",
227+
# check for missing future annotations
228+
"FA102",
227229
# bare except statements
228230
"E722",
229231
# unused arguments
@@ -246,6 +248,8 @@ unfixable = [
246248
"T203",
247249
]
248250

251+
extend-safe-fixes = ["FA102"]
252+
249253
[tool.ruff.lint.flake8-tidy-imports.banned-api]
250254
"functools.lru_cache".msg = "This function does not retain type information for the wrapped function's arguments; The `lru_cache` function from `_utils` should be used instead"
251255

src/asktable/types/ats/task_list_response.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ class ModelGroup(BaseModel):
1919

2020
omni: str
2121

22+
report: str
23+
2224
sql: str
2325

2426

src/asktable/types/ats/task_retrieve_response.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ class ModelGroup(BaseModel):
1919

2020
omni: str
2121

22+
report: str
23+
2224
sql: str
2325

2426

src/asktable/types/ats/task_run_response.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ class ModelGroup(BaseModel):
1919

2020
omni: str
2121

22+
report: str
23+
2224
sql: str
2325

2426

0 commit comments

Comments
 (0)