Skip to content

Commit

Permalink
chore: fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
legopitstop committed Feb 4, 2024
1 parent aaff33f commit 1fcafa9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- CameraPreset

## [0.0.1] - 1/11/2024
- initial release.
- initial release.
2 changes: 1 addition & 1 deletion mcaddon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"MIN_ENGINE_VERSION": [1, 20, 51],
}

from .registry import *
from .exception import *
from .registry import *
from .constant import *
from .file import *
from .util import *
Expand Down
2 changes: 1 addition & 1 deletion mcaddon/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from dataclasses import dataclass

from . import VERSION
from .exception import ComponentNotFoundError
from .item import ItemStack
from .registry import INSTANCE, Registries
from .exception import ComponentNotFoundError
from .constant import RenderMethod, BlockFace
from .file import JsonFile, Loader
from .util import getattr2, stringify, Box, Identifier, MenuCategory, Identifiable
Expand Down
2 changes: 1 addition & 1 deletion mcaddon/pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@


from . import VERSION
from .constant import Edition
from .exception import ManifestNotFoundError
from .constant import Edition
from .manifest import Manifest
from .file import ArchiveFile, File, Importable
from .util import getattr2, Identifier
Expand Down
2 changes: 1 addition & 1 deletion mcaddon/recipe.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import Self

from .item import ItemStack
from .registry import INSTANCE, Registries
from .exception import RecipeTypeNotFoundError
from .registry import INSTANCE, Registries
from .constant import RecipeTag
from .file import JsonFile, Loader
from .util import getattr2, Identifier, Identifiable
Expand Down

0 comments on commit 1fcafa9

Please sign in to comment.