Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 29, 2024
1 parent c4dfc2c commit 646dda4
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/retro_data_structures/crc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Module for calculating CRC hashes with the algorithm and data used by Retro.
"""

from __future__ import annotations

_crc32_constants = [
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/ancs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Wiki: https://wiki.axiodl.com/w/ANCS_(File_Format)
"""

from __future__ import annotations

import typing
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/char.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
To Do: DKCR CHAR Format
"""

from __future__ import annotations

import typing
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/guid.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Wiki: https://wiki.axiodl.com/w/GUID
"""

from __future__ import annotations

from construct import Array, Int64ub
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/mlvl.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Wiki: https://wiki.axiodl.com/w/MLVL_(File_Format)
"""

from __future__ import annotations

import itertools
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/mrea.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Wiki: https://wiki.axiodl.com/w/MREA_(Metroid_Prime_2)
"""

from __future__ import annotations

import copy
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/pas_database.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Wiki: https://wiki.axiodl.com/w/PAS_Database
"""

from __future__ import annotations

import enum
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/sand.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Wiki: https://wiki.axiodl.com/w/SAND_(File_Format)
"""

from __future__ import annotations

import typing
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/scan.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
https://wiki.axiodl.com/w/SCAN_(File_Format)
"""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/strg.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
https://wiki.axiodl.com/w/STRG_(File_Format)
"""

from __future__ import annotations

import re
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/formats/txtr.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
https://wiki.axiodl.com/w/TXTR_(File_Format)
"""

from __future__ import annotations

import enum
Expand Down
1 change: 1 addition & 0 deletions src/retro_data_structures/game_check.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
For checking which game is being parsed
"""

from __future__ import annotations

import typing
Expand Down

0 comments on commit 646dda4

Please sign in to comment.