Skip to content

Commit

Permalink
Fix typo (#2854)
Browse files Browse the repository at this point in the history
Change an unmatched single-quote into a backtick in order to have the intended formatting.
  • Loading branch information
kislaykishore committed Mar 23, 2020
1 parent 36f3262 commit fa07ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion style.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ exceptions.
An import cycle is where modules need to import each other (perhaps indirectly).
Sometimes in order to add a type annotation you have to add an import which
causes a cycle. To avoid this we use the `TYPE_CHECKING` constant provided
by `typing':
by `typing`:
```python
from typing import TYPE_CHECKING
if TYPE_CHECKING:
Expand Down

0 comments on commit fa07ce3

Please sign in to comment.