Skip to content

Commit

Permalink
🚨 linter sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jul 19, 2023
1 parent 382aefc commit 7015c7b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import uvicorn
from fastapi import FastAPI

from findmyorder import FindMyOrder, __version__

logging.basicConfig(
Expand Down
13 changes: 11 additions & 2 deletions findmyorder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,18 @@

import emoji
from pyparsing import (
Combine, Optional, Word, alphas,
nums, one_of, pyparsing_common, Suppress)
Combine,
Optional,
Suppress,
Word,
alphas,
nums,
one_of,
pyparsing_common,
)

from findmyorder import __version__

from .config import settings


Expand Down
2 changes: 2 additions & 0 deletions tests/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"""

from datetime import datetime

import pytest

from findmyorder import FindMyOrder, settings


Expand Down

0 comments on commit 7015c7b

Please sign in to comment.