-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add gitignore options * working scheduler and posting with error messaging This commit now actually posts a single message on a cronlike scheduler and has working error handling when there are no topics. Scaffolded out delete command * Deletion works now * pre-commit is cool, might as well use it Setup some more pre-commit checks and address the changes they suggested in the plugin * add timezone to apscheduler * add the ability to list scheduled jobs
- Loading branch information
1 parent
2c31a80
commit 3dc2458
Showing
4 changed files
with
135 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,3 +102,12 @@ venv.bak/ | |
|
||
# mypy | ||
.mypy_cache/ | ||
|
||
# errbot | ||
data/ | ||
plugins/ | ||
config.py | ||
errbot.log | ||
|
||
#pycharm | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,32 @@ | ||
repos: | ||
- repo: https://github.com/ambv/black | ||
rev: stable | ||
rev: 20.8b1 | ||
hooks: | ||
- id: black | ||
language_version: python3 | ||
types: [python] | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.3.0 | ||
rev: v3.2.0 | ||
hooks: | ||
- id: check-ast | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.3.0 | ||
hooks: | ||
- id: end-of-file-fixer | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.3.0 | ||
hooks: | ||
- id: requirements-txt-fixer | ||
- id: debug-statements | ||
- repo: https://github.com/pre-commit/pygrep-hooks | ||
rev: v1.6.0 | ||
hooks: | ||
- id: python-no-eval | ||
- id: python-no-log-warn | ||
- id: python-use-type-annotations | ||
- repo: https://github.com/asottile/reorder_python_imports | ||
rev: v2.3.5 | ||
hooks: | ||
- id: reorder-python-imports | ||
- repo: https://github.com/Lucas-C/pre-commit-hooks-safety | ||
rev: v1.1.3 | ||
hooks: | ||
- id: python-safety-dependencies-check | ||
- repo: https://github.com/PyCQA/bandit | ||
rev: 1.6.2 | ||
hooks: | ||
- id: bandit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
apscheduler | ||
python-decouple | ||
schedule | ||
wrapt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters