Skip to content

Commit 4cf0542

Browse files
committed
fix: shut up linter
1 parent 1973bbc commit 4cf0542

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

deepgram/clients/agent/v1/websocket/options.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,13 @@ class Speak(BaseResponse):
225225

226226
def __post_init__(self):
227227
# Allow attribute-style access to provider dict
228+
# pylint: disable=missing-class-docstring
228229
class AttrDict(dict):
229230
def __getattr__(self, name):
230231
try:
231232
return self[name]
232233
except KeyError:
234+
# pylint: disable=raise-missing-from
233235
raise AttributeError(name)
234236
def __setattr__(self, name, value):
235237
self[name] = value

0 commit comments

Comments
 (0)