Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
riderius committed Oct 23, 2020
1 parent 0fb033b commit bbe0fdf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ def cropping():
"""This function will crop images."""
root.geometry(
f"{x_entry_cropping_window.get()}x{y_entry_cropping_window.get()}")
logger.info(f'x_entry_cropping_window - {x_entry_cropping_window.get()}, y_entry_cropping_window - {y_entry_cropping_window.get()}')
logger.info(
f"""
x_entry_cropping_window - {x_entry_cropping_window.get()}
y_entry_cropping_window - {y_entry_cropping_window.get()}""")
logger.info('cropping was successful')
root.mainloop()
logger.info('Function crop_image and cropping was closed.')
Expand Down

0 comments on commit bbe0fdf

Please sign in to comment.