fix(core): remove redundant kwargs

This commit is contained in:
smypmsa
2025-08-05 14:53:53 +00:00
parent 2c2306e80b
commit 7e644286a8
-2
View File
@@ -21,7 +21,6 @@ class ListenerFactory:
geyser_auth_type: str = "x-token", geyser_auth_type: str = "x-token",
pumpportal_url: str = "wss://pumpportal.fun/api/data", pumpportal_url: str = "wss://pumpportal.fun/api/data",
platforms: list[Platform] | None = None, platforms: list[Platform] | None = None,
**kwargs
) -> BaseTokenListener: ) -> BaseTokenListener:
"""Create a token listener based on the specified type. """Create a token listener based on the specified type.
@@ -33,7 +32,6 @@ class ListenerFactory:
geyser_auth_type: Geyser authentication type geyser_auth_type: Geyser authentication type
pumpportal_url: PumpPortal WebSocket URL (for pumpportal listener) pumpportal_url: PumpPortal WebSocket URL (for pumpportal listener)
platforms: List of platforms to monitor (if None, monitor all) platforms: List of platforms to monitor (if None, monitor all)
**kwargs: Additional arguments
Returns: Returns:
Configured token listener Configured token listener