@@ -28,17 +28,17 @@ def __init__(
2828 environment = None , # type: Optional[str]
2929 server_name = None , # type: Optional[str]
3030 shutdown_timeout = 2 , # type: int
31- integrations = [], # type: Sequence[Integration]
32- in_app_include = [], # type: List[str]
33- in_app_exclude = [], # type: List[str]
31+ integrations = [], # type: Sequence[Integration] # noqa: B006
32+ in_app_include = [], # type: List[str] # noqa: B006
33+ in_app_exclude = [], # type: List[str] # noqa: B006
3434 default_integrations = True , # type: bool
3535 dist = None , # type: Optional[str]
3636 transport = None , # type: Optional[Union[Transport, Type[Transport], Callable[[Event], None]]]
3737 sample_rate = 1.0 , # type: float
3838 send_default_pii = False , # type: bool
3939 http_proxy = None , # type: Optional[str]
4040 https_proxy = None , # type: Optional[str]
41- ignore_errors = [], # type: List[Union[type, str]]
41+ ignore_errors = [], # type: List[Union[type, str]] # noqa: B006
4242 request_bodies = "medium" , # type: str
4343 before_send = None , # type: Optional[EventProcessor]
4444 before_breadcrumb = None , # type: Optional[BreadcrumbProcessor]
@@ -49,7 +49,7 @@ def __init__(
4949 # DO NOT ENABLE THIS RIGHT NOW UNLESS YOU WANT TO EXCEED YOUR EVENT QUOTA IMMEDIATELY
5050 traces_sample_rate = 0.0 , # type: float
5151 traceparent_v2 = False , # type: bool
52- _experiments = {}, # type: Dict[str, Any]
52+ _experiments = {}, # type: Dict[str, Any] # noqa: B006
5353 ):
5454 # type: (...) -> None
5555 pass
0 commit comments