Skip to content

Commit

Permalink
Refactor: Updated Return Types for Better Clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
BattlefieldDuck committed Jan 29, 2024
1 parent 3248907 commit 160e15d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions opengsq/protocols/eos.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from typing import Any
import aiohttp
import base64
Expand Down
2 changes: 2 additions & 0 deletions opengsq/protocols/fivem.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from typing import Any
import aiohttp
import time
Expand Down
2 changes: 2 additions & 0 deletions opengsq/protocols/gamespy1.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import re

from opengsq.responses.gamespy1 import Status
Expand Down
2 changes: 2 additions & 0 deletions opengsq/protocols/gamespy3.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import re

from opengsq.binary_reader import BinaryReader
Expand Down
2 changes: 2 additions & 0 deletions opengsq/protocols/minecraft.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import json
import re
import struct
Expand Down
2 changes: 2 additions & 0 deletions opengsq/protocols/quake3.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import re

from opengsq.responses.quake2 import Status
Expand Down

0 comments on commit 160e15d

Please sign in to comment.