From 1a86cec0d533887ff13360ffa51c81ad2dc30da2 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 24 Oct 2019 14:47:34 +0200 Subject: [PATCH] Add rpg pack to init --- royalnet/packs/__init__.py | 2 ++ royalnet/packs/empty/__init__.py | 7 ------- royalnet/packs/empty/commands/__init__.py | 10 ---------- royalnet/packs/empty/tables/__init__.py | 10 ---------- 4 files changed, 2 insertions(+), 27 deletions(-) delete mode 100644 royalnet/packs/empty/__init__.py delete mode 100644 royalnet/packs/empty/commands/__init__.py delete mode 100644 royalnet/packs/empty/tables/__init__.py diff --git a/royalnet/packs/__init__.py b/royalnet/packs/__init__.py index 54e38ed4..aa2d62f6 100644 --- a/royalnet/packs/__init__.py +++ b/royalnet/packs/__init__.py @@ -1,7 +1,9 @@ from . import common from . import royal +from . import rpg __all__ = [ "common", "royal", + "rpg", ] diff --git a/royalnet/packs/empty/__init__.py b/royalnet/packs/empty/__init__.py deleted file mode 100644 index 4d839b28..00000000 --- a/royalnet/packs/empty/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -# This is a template Pack __init__. You can use this without changing anything in other packages too! - -from .commands import available_commands -from .tables import available_tables - -__all__ = ["commands", "tables", "available_commands", "available_tables"] - diff --git a/royalnet/packs/empty/commands/__init__.py b/royalnet/packs/empty/commands/__init__.py deleted file mode 100644 index 3e6d10ca..00000000 --- a/royalnet/packs/empty/commands/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -# Imports go here! - - -# Enter the commands of your Pack here! -available_commands = [ - -] - -# Don't change this, it should automatically generate __all__ -__all__ = [command.__class__.__qualname__ for command in available_commands] diff --git a/royalnet/packs/empty/tables/__init__.py b/royalnet/packs/empty/tables/__init__.py deleted file mode 100644 index 23bc7c24..00000000 --- a/royalnet/packs/empty/tables/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -# Imports go here! - - -# Enter the tables of your Pack here! -available_tables = [ - -] - -# Don't change this, it should automatically generate __all__ -__all__ = [table.__class__.__qualname__ for table in available_tables]