From 5b12f068738d86b26e013a5a0608ffb90a5999cb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 7 Jun 2021 10:11:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20=5F=5Fmain=5F=5F.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ __main__.py | 7 ------- 2 files changed, 2 insertions(+), 7 deletions(-) delete mode 100644 __main__.py diff --git a/.gitignore b/.gitignore index 8471041..b44fed8 100644 --- a/.gitignore +++ b/.gitignore @@ -126,3 +126,5 @@ dmypy.json # Terraria worlds *.wld .idea/ + +/__main__.py diff --git a/__main__.py b/__main__.py deleted file mode 100644 index cc17518..0000000 --- a/__main__.py +++ /dev/null @@ -1,7 +0,0 @@ -import lihzahrd -from lihzahrd.timer import Timer - -with Timer("Parse sample world"): - world = lihzahrd.World.create_from_file("The_Gateway_To_A_New_Future.wld") - -...