matta
06/15/2020, 11:17 PMChris White
gsheets.py
, in particular you should replace this one import line as follows:
-from typing import List, Union, Any, TypedDict, Callable
+from typing import Any, Callable, List, Union
- row
is an undocumented argument of your ReadGsheetRow
task
- the docstring for gsheet_helper
isn’t quite right: the helper only takes a fn
function that needs to be documented
With these 3 changes the builds should start succeeding!matta
06/17/2020, 10:42 PMmatta
06/17/2020, 11:27 PMgsheet helper
is that it's basically a "wrapper" way to turn anything you can do through the gsheets
package (making new pages, different kinds of selection, searches) and turn them into a Prefect task. Not sure if that's unsound or maybe "un-Prefect-ic"?matta
06/17/2020, 11:29 PMCallable
.Chris White
docs/outline.toml
and the docstring won’t be checkedmatta
06/18/2020, 7:24 AM