Skip to content

Commit 5083454

Browse files
committed
lint
1 parent fdbca43 commit 5083454

1 file changed

Lines changed: 27 additions & 2 deletions

File tree

src/lpdb/session.py

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
from abc import abstractmethod, ABC
22
from datetime import date
33
from http import HTTPStatus
4-
from typing import Any, Final, Literal, NotRequired, Optional, override, Required, TypedDict, TypeGuard
4+
from typing import (
5+
Any,
6+
Final,
7+
Literal,
8+
NotRequired,
9+
Optional,
10+
override,
11+
Required,
12+
TypedDict,
13+
TypeGuard,
14+
)
515
import re
616
import warnings
717

@@ -11,7 +21,22 @@
1121

1222
__all__ = ["LpdbError", "LpdbWarning", "LpdbSession"]
1323

14-
type LpdbDataType = Literal["broadcasters", "company", "datapoint", "externalmedialink", "match", "placement", "player", "series", "squadplayer", "standingsentry", "standingstable", "team", "tournament", "transfer"]
24+
type LpdbDataType = Literal[
25+
"broadcasters",
26+
"company",
27+
"datapoint",
28+
"externalmedialink",
29+
"match",
30+
"placement",
31+
"player",
32+
"series",
33+
"squadplayer",
34+
"standingsentry",
35+
"standingstable",
36+
"team",
37+
"tournament",
38+
"transfer",
39+
]
1540

1641

1742
class LpdbResponse(TypedDict):

0 commit comments

Comments
 (0)