diff options
| author | deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> | 2024-08-16 14:45:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-16 14:45:16 +0000 |
| commit | 653cb35e50b339356274ff03c0d75ac3babf927f (patch) | |
| tree | 489115eaadf673615a9600532c78e79dfdfa1a99 | |
| parent | 890ca0434ce5f7c9e7bdba1482a86cd63a4ef8f9 (diff) | |
| download | de-project-bentley-653cb35e50b339356274ff03c0d75ac3babf927f.tar.gz de-project-bentley-653cb35e50b339356274ff03c0d75ac3babf927f.zip | |
style: format code with Autopep8, Black and Ruff Formatter
This commit fixes the style issues introduced in 890ca04 according to the output
from Autopep8, Black and Ruff Formatter.
Details: https://github.com/ajschofield/de-project-bentley/pull/47
| -rw-r--r-- | src/extract_lambda.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/extract_lambda.py b/src/extract_lambda.py index 30c7005..4168e27 100644 --- a/src/extract_lambda.py +++ b/src/extract_lambda.py @@ -11,7 +11,9 @@ import re logger = logging.getLogger() logger.setLevel(logging.INFO) -## DB Exception class +# DB Exception class + + class DBConnectionException(Exception): """Wraps pg8000.native Error or DatabaseError.""" |
