Skip to content

Commit 1b13184

Browse files
committed
Remove kw_only
1 parent 3cb9f99 commit 1b13184

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ldclient/plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
if TYPE_CHECKING:
1414
from ldclient.client import LDClient
1515

16-
@dataclass(kw_only=True)
16+
@dataclass
1717
class SdkMetadata:
1818
"""
1919
Metadata about the SDK.
@@ -24,7 +24,7 @@ class SdkMetadata:
2424
wrapper_version: Optional[str] = None #: The wrapper version if this SDK is a wrapper
2525

2626

27-
@dataclass(kw_only=True)
27+
@dataclass
2828
class ApplicationMetadata:
2929
"""
3030
Metadata about the application using the SDK.
@@ -33,7 +33,7 @@ class ApplicationMetadata:
3333
version: Optional[str] = None #: The version of the application
3434

3535

36-
@dataclass(kw_only=True)
36+
@dataclass
3737
class EnvironmentMetadata:
3838
"""
3939
Metadata about the environment in which the SDK is running.
@@ -43,7 +43,7 @@ class EnvironmentMetadata:
4343
sdk_key: str #: The SDK key used to initialize the SDK
4444

4545

46-
@dataclass(kw_only=True)
46+
@dataclass
4747
class PluginMetadata:
4848
"""
4949
Metadata about a plugin implementation.

0 commit comments

Comments
 (0)