From 2116b21e153b135595567b00252d9802df681e0a Mon Sep 17 00:00:00 2001
From: 0000OOOO0000 <63518686+0000OOOO0000@users.noreply.github.com>
Date: Sat, 21 Nov 2020 01:30:42 +0200
Subject: [PATCH] Delete __INIT__.PY

---
 .../ADDONS/ARRAY_TOOLS_1-2-1/__INIT__.PY      | 68 -------------------
 1 file changed, 68 deletions(-)
 delete mode 100644 ◯ᴥᗱᗴᗝИNᗱᗴᙁ⚭ⵙ⚭ᙁᗱᗴИNᗝᗱᗴᴥ◯/2.90/SCRIPTS/ADDONS/ARRAY_TOOLS_1-2-1/__INIT__.PY

diff --git a/◯ᴥᗱᗴᗝИNᗱᗴᙁ⚭ⵙ⚭ᙁᗱᗴИNᗝᗱᗴᴥ◯/2.90/SCRIPTS/ADDONS/ARRAY_TOOLS_1-2-1/__INIT__.PY b/◯ᴥᗱᗴᗝИNᗱᗴᙁ⚭ⵙ⚭ᙁᗱᗴИNᗝᗱᗴᴥ◯/2.90/SCRIPTS/ADDONS/ARRAY_TOOLS_1-2-1/__INIT__.PY
deleted file mode 100644
index 9fd1d327..00000000
--- a/◯ᴥᗱᗴᗝИNᗱᗴᙁ⚭ⵙ⚭ᙁᗱᗴИNᗝᗱᗴᴥ◯/2.90/SCRIPTS/ADDONS/ARRAY_TOOLS_1-2-1/__INIT__.PY
+++ /dev/null
@@ -1,68 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-import bpy
-
-from . import cfg
-from . import at_interface
-
-bl_info = {
-    "name": "Array_tools",
-    "author": "Elreenys",
-    "description": "Tools to create array of objects",
-    "blender": (2, 80, 0),
-    "version": (1, 2, 1),
-    "location": "View3D > sidebar > array tools tab",
-    "category": "Object"
-}
-
-classes = (
-    at_operators.OBJECT_OT_at_start,
-    at_operators.OBJECT_OT_at_cancel,
-    at_operators.OBJECT_OT_at_done,
-    at_operators.OBJECT_OT_fill_tr,
-    at_operators.OBJECT_OT_fill_sc,
-    at_operators.OBJECT_OT_fill_rot,
-    at_operators.OBJECT_OT_x360,
-    at_operators.OBJECT_OT_y360,
-    at_operators.OBJECT_OT_z360,
-    at_operators.OBJECT_OT_reset_tr,
-    at_operators.OBJECT_OT_reset_sc,
-    at_operators.OBJECT_OT_reset_rot,
-    at_operators.OBJECT_OT_reset_second,
-    at_operators.OBJECT_OT_error,
-    at_panel.UIPANEL_PT_trans,
-    at_panel.UIPANEL_PT_rows,
-    at_panel.UIPANEL_PT_options,
-    at_interface.ArrayTools_props
-)
-
-
-def register():
-    scene = bpy.types.Scene
-    pp = bpy.props.PointerProperty
-
-    for cls in classes:
-        bpy.utils.register_class(cls)
-    scene.arraytools_prop = pp(type=at_interface.ArrayTools_props)
-
-
-def unregister():
-    del bpy.types.Scene.arraytools_prop
-    for cls in reversed(classes):
-        bpy.utils.unregister_class(cls)
-
-
-if __name__ == '__main__':
-    register()