Skip to content

Commit d543f63

Browse files
committed
Black formatting updates
1 parent 858788a commit d543f63

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

pytiled_parser/parsers/json/layer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Layer parsing for the JSON Map Format.
22
"""
3+
34
import base64
45
import gzip
56
import importlib.util

pytiled_parser/parsers/json/tiled_object.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Object parsing for the JSON Map Format.
22
"""
3+
34
from pathlib import Path
45
from typing import Any, Callable, Dict, List, Optional
56

pytiled_parser/parsers/tmx/layer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Layer parsing for the TMX Map Format.
22
"""
3+
34
import base64
45
import gzip
56
import importlib.util

pytiled_parser/tileset.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
and [TMX Reference](https://doc.mapeditor.org/en/stable/reference/tmx-map-format/#tileset)
55
and [JSON Reference](https://doc.mapeditor.org/en/stable/reference/json-map-format/#tileset)
66
"""
7+
78
# pylint: disable=too-few-public-methods
89
from pathlib import Path
910
from typing import Dict, List, NamedTuple, Optional

pytiled_parser/util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Utility Functions for PyTiled"""
2+
23
import json
34
import xml.etree.ElementTree as etree
45
from pathlib import Path

pytiled_parser/wang_set.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
and also the [TMX Reference](https://doc.mapeditor.org/en/stable/reference/tmx-map-format/#wangsets)
66
and the [JSON Reference](https://doc.mapeditor.org/en/stable/reference/json-map-format/#wang-set)
77
"""
8+
89
from typing import Dict, List, Optional
910

1011
import attr

0 commit comments

Comments
 (0)