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

Commit

Permalink
Oh so THAT's what the float() was for!
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 committed Apr 20, 2018
1 parent bf6cb19 commit 6e38295
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rsi/rsi.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def from_dmi(cls: Type[T], path: Union[str, Path]) -> "Rsi":

if dmstate.frames != 1:
# BYOND delays are in deciseconds, not seconds!
delay = dmstate.delay[y] / 10
delay = float(dmstate.delay[y]) / 10
else:
delay = 1.0
rsstate.delays[x].append(delay)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="RSI.py",
version="1.1.2",
version="1.1.3",
description="A library for manipulation of the RSI format used in Space Station 14.",
url="https://github.com/space-wizards/RSI.py",
author="Pieter-Jan Briers",
Expand Down

0 comments on commit 6e38295

Please sign in to comment.