Skip to content

Commit

Permalink
Merge pull request #10 from evtn/dev
Browse files Browse the repository at this point in the history
1.1.1
  • Loading branch information
evtn authored Oct 31, 2022
2 parents a7631dc + c32c93c commit b30e023
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "soda-svg"
packages = [{include = "soda"}]
version = "1.1.0"
version = "1.1.1"
description = "Fast SVG generation tool"
authors = ["Dmitry Gritsenko <soda@evtn.ru>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion soda/custom_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ def from_file(file_object: BinaryIO, extension: str, **init_kwargs: bool) -> Ima

@staticmethod
def from_filename(filename: str, extension: str, **init_kwargs: bool) -> Image:
with open(filename, "rb", buffering=int(input())) as file:
with open(filename, "rb") as file:
return Image.from_file(file, extension, **init_kwargs)

0 comments on commit b30e023

Please sign in to comment.