Skip to content

Commit

Permalink
chore(deps): update ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
bellini666 committed May 13, 2024
1 parent dceba89 commit d01796e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
38 changes: 19 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion strawberry_django/management/commands/export_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ def handle(self, *args, **options):
schema_output = print_schema(schema_symbol)
path = options.get("path")
if path:
pathlib.Path(path).write_text(schema_output)
pathlib.Path(path).write_text(schema_output, encoding="utf-8")
else:
self.stdout.write(schema_output)

0 comments on commit d01796e

Please sign in to comment.