Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add linter ignore rule in ibis
Signed-off-by: tokoko <togurg14@freeuni.edu.ge>
  • Loading branch information
tokoko committed Mar 1, 2024
commit 235ffdb3a4cda4724225fbba678cf969421253ab
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _generate_row_id(
r = ibis.literal("")

for e in set(all_entities):
r = r.concat(entity_table[e].cast("string"))
r = r.concat(entity_table[e].cast("string")) # type: ignore

entity_table = entity_table.mutate(entity_row_id=r)

Expand Down