Skip to content

Commit

Permalink
Black formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleptomania committed Jul 2, 2024
1 parent 858788a commit d543f63
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions pytiled_parser/parsers/json/layer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Layer parsing for the JSON Map Format.
"""

import base64
import gzip
import importlib.util
Expand Down
1 change: 1 addition & 0 deletions pytiled_parser/parsers/json/tiled_object.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Object parsing for the JSON Map Format.
"""

from pathlib import Path
from typing import Any, Callable, Dict, List, Optional

Expand Down
1 change: 1 addition & 0 deletions pytiled_parser/parsers/tmx/layer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Layer parsing for the TMX Map Format.
"""

import base64
import gzip
import importlib.util
Expand Down
1 change: 1 addition & 0 deletions pytiled_parser/tileset.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
and [TMX Reference](https://doc.mapeditor.org/en/stable/reference/tmx-map-format/#tileset)
and [JSON Reference](https://doc.mapeditor.org/en/stable/reference/json-map-format/#tileset)
"""

# pylint: disable=too-few-public-methods
from pathlib import Path
from typing import Dict, List, NamedTuple, Optional
Expand Down
1 change: 1 addition & 0 deletions pytiled_parser/util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utility Functions for PyTiled"""

import json
import xml.etree.ElementTree as etree
from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions pytiled_parser/wang_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
and also the [TMX Reference](https://doc.mapeditor.org/en/stable/reference/tmx-map-format/#wangsets)
and the [JSON Reference](https://doc.mapeditor.org/en/stable/reference/json-map-format/#wang-set)
"""

from typing import Dict, List, Optional

import attr
Expand Down

0 comments on commit d543f63

Please sign in to comment.