Skip to content

Commit 9c599d5

Browse files
committed
RDBC-642 Cosmetics
1 parent f01d89c commit 9c599d5

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

ravendb/documents/commands/subscriptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def set_response(self, response: Optional[str], from_cache: bool) -> None:
5151
def is_read_request(self) -> bool:
5252
return False
5353

54-
def get_raft_unique_request_id(self) -> str: # todo: change to get_raft_unique_request_id
54+
def get_raft_unique_request_id(self) -> str:
5555
return RaftIdGenerator.new_id()
5656

5757

ravendb/documents/indexes/spatial/configuration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from __future__ import annotations
2-
from __future__ import annotations
32
from enum import Enum
43
from typing import Union, List, Dict
54

ravendb/documents/subscriptions/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def to_json(self) -> Dict:
3131
return {
3232
"Name": self.name,
3333
"Query": self.query,
34-
"Includes": dict(), # todo: make sure it works
34+
"Includes": dict(),
3535
"ChangeVector": self.change_vector,
3636
"MentorNode": self.mentor_node,
3737
}

0 commit comments

Comments
 (0)