Skip to content

Commit

Permalink
Fixed order of import
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorvaldAagaard committed Jun 13, 2024
1 parent 065bb8f commit ddf6b0c
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions src/endplay/parsers/lin.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,15 @@

__all__ = ["LINEncodeError", "dump", "dumps", "load", "loads"]

import re
from typing import IO

from more_itertools import chunked

from endplay.config import suppress_unicode
from endplay.types import (
Bid,
Board,
Card,
Contract,
ContractBid,
Deal,
PenaltyBid,
Player,
Vul,
)
from endplay.types import (Bid, Board, Card, Contract, ContractBid, Deal,
PenaltyBid, Player, Vul)
from endplay.utils.escape import escape_suits, unescape_suits
from endplay.utils.play import result_to_tricks, total_tricks, tricks_to_result
import re
from more_itertools import chunked


class LINDecoder:
Expand Down

0 comments on commit ddf6b0c

Please sign in to comment.