1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-06-14 06:12:31 +03:00

Merge pull request #1266 from chennin/patch-2

Fix shutting_down example in plugins.md
This commit is contained in:
Athanasius 2021-08-25 20:38:53 +01:00 committed by GitHub
commit 9f00bfea75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -326,9 +326,9 @@ should treat it as a variable.
**Do NOT use**:
```python
from config import shutting_down
from config import config
if shutting_down():
if config.shutting_down():
# During shutdown
```
@ -338,9 +338,9 @@ this context you're testing if the function exists, and that is always True.
So instead use:
```python
from config import shutting_down
from config import config
if shutting_down:
if config.shutting_down:
# During shutdown
```