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

Commit

Permalink
Fix leftover full_name -> name in rsi.py (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ComicIronic authored May 24, 2020
1 parent 62d8237 commit 6671293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsi/rsi.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def open(cls, path: Union[str, Path]) -> "Rsi":
newstate.flags = state["flags"]

image = Image.open(path.joinpath(
newstate.full_name + ".png")) # type: Image.Image
newstate.name + ".png")) # type: Image.Image

sheetdimensions = image.width // rsi.size[0], image.height // rsi.size[1]

Expand Down

0 comments on commit 6671293

Please sign in to comment.