Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev into master #9

Merged
merged 3 commits into from
Sep 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
.Venv/
venv/
Venv/
.venv
.venv
settings.yml
11 changes: 11 additions & 0 deletions LMI/Interface.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from lucifer import uniglobal


class LuciferManagerInterface:
def __init__(self):
self.luciferManager = None

def init(self):
self.luciferManager = uniglobal.luciferManager
self.luciferManager.isLMI = True
print("LMI Loaded!")
6 changes: 5 additions & 1 deletion LMI/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@
LMI (Lucifer Module Interface) allows you to easily interface with different parts of the application and system.
Modules:
- Command: Allows you to run system commands with varying levels of output
"""
"""
from .Interface import LuciferManagerInterface


LMI = LuciferManagerInterface()
55 changes: 0 additions & 55 deletions libs/argparse-1.4.0.dist-info/DESCRIPTION.rst

This file was deleted.

1 change: 0 additions & 1 deletion libs/argparse-1.4.0.dist-info/INSTALLER

This file was deleted.

85 changes: 0 additions & 85 deletions libs/argparse-1.4.0.dist-info/METADATA

This file was deleted.

9 changes: 0 additions & 9 deletions libs/argparse-1.4.0.dist-info/RECORD

This file was deleted.

6 changes: 0 additions & 6 deletions libs/argparse-1.4.0.dist-info/WHEEL

This file was deleted.

54 changes: 0 additions & 54 deletions libs/argparse-1.4.0.dist-info/metadata.json

This file was deleted.

1 change: 0 additions & 1 deletion libs/argparse-1.4.0.dist-info/top_level.txt

This file was deleted.

Loading