Skip to content

Commit

Permalink
added newline after docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
lunathanael committed Mar 12, 2024
1 parent 09ea9ba commit 927cf90
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions clash_royale/envs/game_engine/struct.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Various structures to be utilized
"""

from __future__ import annotations

import dataclasses

class Scheduler:
Expand All @@ -28,6 +30,7 @@ class GameScheduler:
"""
Template class for game scheduling
"""

def __init__(self, scheduler: Scheduler, fps: int=30) -> None:
self.scheduler: Scheduler = scheduler
self.fps: int = fps
Expand Down

0 comments on commit 927cf90

Please sign in to comment.