From 8a31bf701d331d00f6458eadcfd952866fcec904 Mon Sep 17 00:00:00 2001 From: Darren Eberly Date: Sun, 19 Feb 2023 17:41:25 -0500 Subject: [PATCH] Remove old version import --- pytiled_parser/__init__.py | 43 +++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/pytiled_parser/__init__.py b/pytiled_parser/__init__.py index 760b1bc..b5ac49c 100644 --- a/pytiled_parser/__init__.py +++ b/pytiled_parser/__init__.py @@ -1,22 +1,21 @@ -"""Parse Tiled Maps and Tilesets - -See: https://www.mapeditor.org/ - -This library is for parsing JSON formatted Tiled Map Editormaps and tilesets to be - used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric) - or side-scrolling games in a strictly typed fashion. - -PyTiled Parser is not tied to any particular graphics library or game engine. -""" - -# pylint: disable=too-few-public-methods - -from .common_types import Color, OrderedPair, Size -from .exception import UnknownFormat -from .layer import Chunk, ImageLayer, Layer, LayerGroup, ObjectLayer, TileLayer -from .parser import parse_map, parse_world -from .properties import Properties, Property -from .tiled_map import TiledMap -from .tileset import Frame, Grid, Tile, Tileset, Transformations -from .version import __version__ -from .world import World, WorldMap +"""Parse Tiled Maps and Tilesets + +See: https://www.mapeditor.org/ + +This library is for parsing JSON formatted Tiled Map Editormaps and tilesets to be + used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric) + or side-scrolling games in a strictly typed fashion. + +PyTiled Parser is not tied to any particular graphics library or game engine. +""" + +# pylint: disable=too-few-public-methods + +from .common_types import Color, OrderedPair, Size +from .exception import UnknownFormat +from .layer import Chunk, ImageLayer, Layer, LayerGroup, ObjectLayer, TileLayer +from .parser import parse_map, parse_world +from .properties import Properties, Property +from .tiled_map import TiledMap +from .tileset import Frame, Grid, Tile, Tileset, Transformations +from .world import World, WorldMap