Skip to content

Commit b67b759

Browse files
authored
v0.1.1 (#9)
* v0.1.1 * lint
1 parent c0cb9e5 commit b67b759

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

marimo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"ui",
3030
"vstack",
3131
]
32-
__version__ = "0.1.0"
32+
__version__ = "0.1.1"
3333

3434
from marimo import config
3535
from marimo._ast.app import App

marimo/_utils/flatten.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def flatten(value: Any, json_compat_keys: bool = False) -> FLATTEN_RET_TYPE:
198198
flattened, u = _flatten(value, json_compat_keys, seen=set())
199199

200200
def unflatten_with_validation(vector: list[Any]) -> STRUCT_TYPE:
201-
if type(vector) != list:
201+
if type(vector) != list: # noqa: E721
202202
raise ValueError(
203203
"unflatten function requires a list as input, "
204204
+ f" but got {type(list)}"

0 commit comments

Comments
 (0)