Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
evemartin committed Aug 16, 2024
1 parent 9044510 commit e8223fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game/views/level.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def load_workspace_solution(request, level_name):

def start_episode(request, episodeId):
episode = cached_episode(episodeId)
from_python_den = episode.first_level >= 1000
from_python_den = int(episode.first_level.name) >= 1000
return play_level(request, episode.first_level, False, from_python_den)


Expand Down

0 comments on commit e8223fa

Please sign in to comment.