Skip to content

Commit ff11931

Browse files
style: pre-commit fixed styling
1 parent 9efda4f commit ff11931

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Code can be marked with `pragma: no cover`, if it can not be tested for some rea
1919
This makes it easy to spot uncovered code in the source.
2020

2121
Impossible conditions can be handled with `assert False`.
22-
``` python
22+
```python
2323
if some_condition:
2424
...
2525
if some_other_codition:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ One way to verify if it is enabled is to check which loader is used.
6161
`lazy-imports-lite` works by rewriting the AST at runtime before the code is compiled.
6262

6363
The following code:
64-
``` python
64+
```python
6565
from foo import bar
6666

6767

@@ -71,7 +71,7 @@ def f():
7171

7272
is internally transformed to:
7373

74-
``` python
74+
```python
7575
import lazy_imports_lite._hooks as __lazy_imports_lite__
7676

7777
globals = __lazy_imports_lite__.make_globals(lambda g=globals: g())

0 commit comments

Comments
 (0)