Skip to content

Commit

Permalink
fix: forgot scan
Browse files Browse the repository at this point in the history
  • Loading branch information
ppavacic committed Nov 11, 2024
1 parent 94b3c95 commit 102ed2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="docscan",
version="1.0.5",
version="1.0.6",
description="This is a document scanner",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/docscan/cmd/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
type=click.File("wb", lazy=True),
)
def main(input, output):
output.write(rembg.remove(input.read()))
output.write(scan(rembg.remove(input.read())))


if __name__ == "__main__":
Expand Down

0 comments on commit 102ed2e

Please sign in to comment.