Skip to content

Commit

Permalink
disabled CODEOWNERS (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmunkholm authored Oct 9, 2024
1 parent 0b16a53 commit c9f4dc9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# the repo. Unless a later match takes precedence,
# The users listed below are global owners and will be
# requested for review when someone opens a pull request.
* @plaharanne @tomach @WalBeh @Taliik @juanpardo @widmogrod @goat-ssh
# * @plaharanne @tomach @WalBeh @Taliik @juanpardo @widmogrod @goat-ssh
2 changes: 1 addition & 1 deletion croud/clusters/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ def _download_exported_file(
path.parent.mkdir(parents=True, exist_ok=True)

desc = "(Unknown total file size)" if file_size == 0 else ""
r.raw.read = functools.partial(r.raw.read, decode_content=True)
r.raw.read = functools.partial(r.raw.read, decode_content=True) # type: ignore # noqa
with tqdm.wrapattr(r.raw, "read", total=file_size, desc=desc) as r_raw:
with path.open("wb") as f:
copyfileobj(r_raw, f)
Expand Down
Empty file added my_table.csv
Empty file.

0 comments on commit c9f4dc9

Please sign in to comment.