Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Cheong committed Mar 11, 2023
1 parent 0c3b941 commit f409eef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/revChatGPT/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import re
from typing import Set

from prompt_toolkit import prompt
from prompt_toolkit import PromptSession
Expand Down Expand Up @@ -69,7 +70,7 @@ async def get_input_async(
)


def get_filtered_keys_from_object(obj: object, *keys: str) -> set[str]:
def get_filtered_keys_from_object(obj: object, *keys: str) -> Set[str]:
"""
Get filtered list of object variable names.
:param keys: List of keys to include. If the first key is "not", the remaining keys will be removed from the class keys.
Expand Down

0 comments on commit f409eef

Please sign in to comment.