@@ -108,7 +108,7 @@ def add_breadcrumb(
108108
109109
110110@overload
111- def configure_scope (): # noqa: F811
111+ def configure_scope ():
112112 # type: () -> ContextManager[Scope]
113113 pass
114114
@@ -130,7 +130,7 @@ def configure_scope( # noqa: F811
130130
131131
132132@overload
133- def push_scope (): # noqa: F811
133+ def push_scope ():
134134 # type: () -> ContextManager[Scope]
135135 pass
136136
@@ -151,31 +151,31 @@ def push_scope( # noqa: F811
151151 return Hub .current .push_scope (callback )
152152
153153
154- @scopemethod # noqa
154+ @scopemethod
155155def set_tag (key , value ):
156156 # type: (str, Any) -> None
157157 return Hub .current .scope .set_tag (key , value )
158158
159159
160- @scopemethod # noqa
160+ @scopemethod
161161def set_context (key , value ):
162162 # type: (str, Dict[str, Any]) -> None
163163 return Hub .current .scope .set_context (key , value )
164164
165165
166- @scopemethod # noqa
166+ @scopemethod
167167def set_extra (key , value ):
168168 # type: (str, Any) -> None
169169 return Hub .current .scope .set_extra (key , value )
170170
171171
172- @scopemethod # noqa
172+ @scopemethod
173173def set_user (value ):
174174 # type: (Optional[Dict[str, Any]]) -> None
175175 return Hub .current .scope .set_user (value )
176176
177177
178- @scopemethod # noqa
178+ @scopemethod
179179def set_level (value ):
180180 # type: (str) -> None
181181 return Hub .current .scope .set_level (value )
0 commit comments