File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def capture_exception(
84
84
def add_breadcrumb (
85
85
crumb = None , # type: Optional[Breadcrumb]
86
86
hint = None , # type: Optional[BreadcrumbHint]
87
- ** kwargs # type: ** Any
87
+ ** kwargs # type: Any
88
88
):
89
89
# type: (...) -> None
90
90
hub = Hub .current
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ def last_event_id(self):
304
304
def bind_client (
305
305
self , new # type: Optional[Client]
306
306
):
307
- # type: () -> None
307
+ # type: (... ) -> None
308
308
"""Binds a new client to the hub."""
309
309
top = self ._stack [- 1 ]
310
310
self ._stack [- 1 ] = (new , top [1 ])
@@ -383,7 +383,7 @@ def add_breadcrumb(
383
383
self ,
384
384
crumb = None , # type: Optional[Breadcrumb]
385
385
hint = None , # type: Optional[BreadcrumbHint]
386
- ** kwargs # type: ** Any
386
+ ** kwargs # type: Any
387
387
):
388
388
# type: (...) -> None
389
389
"""Adds a breadcrumb. The breadcrumbs are a dictionary with the
Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ def capture_event(
59
59
raise NotImplementedError ()
60
60
61
61
def flush (
62
- self , # type; float
63
- timeout , # type: Optional[Any]
64
- callback = None ,
62
+ self ,
63
+ timeout , # type: float
64
+ callback = None , # type: Optional[Any]
65
65
):
66
66
# type: (...) -> None
67
67
"""Wait `timeout` seconds for the current events to be sent out."""
You can’t perform that action at this time.
0 commit comments