We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6ba2c commit 26bbb6bCopy full SHA for 26bbb6b
packages/smithy-aws-core/src/smithy_aws_core/aio/protocols.py
@@ -1,4 +1,4 @@
1
-from typing import Literal
+from typing import Final
2
3
from smithy_aws_core.traits import RestJson1Trait
4
from smithy_http.aio.protocols import HttpBindingClientProtocol
@@ -12,7 +12,7 @@ class RestJsonClientProtocol(HttpBindingClientProtocol):
12
13
_id: ShapeID = RestJson1Trait.id
14
_codec: JSONCodec = JSONCodec()
15
- _contentType: Literal["application/json"] = "application/json"
+ _contentType: Final = "application/json"
16
17
@property
18
def id(self) -> ShapeID:
0 commit comments