Skip to content

Commit dca7088

Browse files
Christian Jensenseratch
authored andcommitted
Enable additional data on state creation
This should allow for the creation of custom states where the additional data can be used to associate external accounts.
1 parent 9ec0745 commit dca7088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

slack_sdk/oauth/state_store/state_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class OAuthStateStore:
66
def logger(self) -> Logger:
77
raise NotImplementedError()
88

9-
def issue(self) -> str:
9+
def issue(self, *args, **kwargs) -> str:
1010
raise NotImplementedError()
1111

1212
def consume(self, state: str) -> bool:

0 commit comments

Comments
 (0)