Skip to content

Commit 98f601f

Browse files
authored
Remove semicolons 😅
1 parent c1250a7 commit 98f601f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ pip install python-bufflog
2020

2121
from bufflog import bufflog
2222

23-
bufflog.debug('Hello debug', context={"some":"stuff"});
24-
bufflog.info('Hello info');
25-
bufflog.error('Hello error');
26-
bufflog.critical('Hello critical');
23+
bufflog.debug('Hello debug', context={"some":"stuff"})
24+
bufflog.info('Hello info')
25+
bufflog.error('Hello error')
26+
bufflog.critical('Hello critical')
2727
```
2828

2929
## Log verbosity levels

0 commit comments

Comments
 (0)