File tree Expand file tree Collapse file tree 5 files changed +6
-3
lines changed Expand file tree Collapse file tree 5 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1717 - run : uv python install python3.13
1818 - run : uv run ruff check src/obelisk/
1919 - run : uv run ruff format --check src/obelisk/
20+ - run : uv run mypy src/obelisk/
2021 test :
2122 name : Run tests
2223 strategy :
Original file line number Diff line number Diff line change 1010# Redirect output to stderr.
1111exec 1>&2
1212
13- exec uv run ruff format --check src/obelisk/
13+ uv run ruff format --check src/obelisk/
14+ uv run mypy src/obelisk/
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ def __init__(
225225 retry_strategy : RetryStrategy = NoRetryStrategy (),
226226 ) -> None :
227227 BaseClient .__init__ (
228+ self ,
228229 client = client ,
229230 secret = secret ,
230231 retry_strategy = retry_strategy ,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def fetch_single_chunk(
4646 self ,
4747 datasets : List [str ],
4848 metrics : Optional [List [str ]] = None ,
49- fields : Optional [dict ] = None ,
49+ fields : Optional [List [ str ] ] = None ,
5050 from_timestamp : Optional [int ] = None ,
5151 to_timestamp : Optional [int ] = None ,
5252 order_by : Optional [dict ] = None ,
@@ -116,7 +116,7 @@ def query(
116116 self ,
117117 datasets : List [str ],
118118 metrics : Optional [List [str ]] = None ,
119- fields : Optional [dict ] = None ,
119+ fields : Optional [List [ str ] ] = None ,
120120 from_timestamp : Optional [int ] = None ,
121121 to_timestamp : Optional [int ] = None ,
122122 order_by : Optional [dict ] = None ,
You can’t perform that action at this time.
0 commit comments