Skip to content

Commit 1b03600

Browse files
committed
First commit...
1 parent 42291f7 commit 1b03600

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Busy Business Loggers
1+
# Busy Loggers
22

33
![Licence](https://img.shields.io/badge/licence-MIT-blue.svg)
44
![Python Version](https://img.shields.io/badge/python-3.8%2B-brightgreen.svg)

examples/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ def run_app():
2929
with sqlite_business_logger, json_business_logger:
3030
run_app()
3131

32-
print("\nApplication terminée. Les loggers ont été arrêtés proprement.")
32+
print("\nApplication terminée. Les loggers ont été arrêtés proprement.")

src/busylogger/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
__all__ = [
1111
"sqlite_business_logger",
1212
"json_business_logger"
13-
]
13+
]

src/busylogger/json_business_logger.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ def _shutdown_backend(self):
5353
if self.file_handle:
5454
self.file_handle.close()
5555

56-
json_business_logger = JsonBusinessLogger()
56+
57+
json_business_logger = JsonBusinessLogger()

src/busylogger/sqlite_business_logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ def _shutdown_backend(self):
7878
self.conn.close()
7979

8080

81-
sqlite_business_logger = SqliteBusinessLogger()
81+
sqlite_business_logger = SqliteBusinessLogger()

0 commit comments

Comments
 (0)