-
Notifications
You must be signed in to change notification settings - Fork 70
Short-form to fully qualified object naming #381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -34,7 +34,7 @@ class InputFileDownloader(ABC): | |||||
| Abstract base class for a plugin responsible for downloading files provided by the user. | ||||||
|
|
||||||
| Implementations should download any files referenced by the incoming activity and return a | ||||||
| list of :class:`InputFile` instances representing the downloaded content. | ||||||
| list of :class:`microsoft_agents.hosting.core.InputFile` instances representing the downloaded content. | ||||||
| """ | ||||||
|
Comment on lines
36
to
38
|
||||||
|
|
||||||
| @abstractmethod | ||||||
|
|
@@ -44,6 +44,6 @@ async def download_files(self, context: TurnContext) -> List[InputFile]: | |||||
|
|
||||||
| :param context: The turn context for the current request. | ||||||
| :type context: :class:`microsoft_agents.hosting.core.turn_context.TurnContext` | ||||||
| :return: A list of downloaded :class:`InputFile` objects. | ||||||
| :return: A list of downloaded :class:`microsoft_agents.hosting.core.InputFile` objects. | ||||||
|
||||||
| :return: A list of downloaded :class:`microsoft_agents.hosting.core.InputFile` objects. | |
| :return: A list of downloaded :class:`microsoft_agents.hosting.core.app.input_file.InputFile` objects. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Grammar issue in the note: "When the ... is used method receives..." reads incorrectly and is likely missing the word "method" after the reference (and/or a comma). Adjust the sentence so it parses clearly in the generated reference docs.