Skip to content

Commit

Permalink
fix typo in event_stream.py (microsoft#363)
Browse files Browse the repository at this point in the history
# Description

splited -> splitted

# All Promptflow Contribution checklist:
- [x] **The pull request does not introduce [breaking changes]**
- [ ] **CHANGELOG is updated for new features, bug fixes or other
significant changes.**
- [x] **I have read the [contribution guidelines](../CONTRIBUTING.md).**

## General Guidelines and Best Practices
- [x] Title of the pull request is clear and informative.
- [x] There are a small number of commits, each of which have an
informative message. This means that previously merged commits do not
appear in the history of the PR. For more information on cleaning up the
commits in your PR, [see this
page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/cleaning-up-commits.md).

### Testing Guidelines
- [ ] Pull request includes test coverage for the included changes.
  • Loading branch information
eltociear authored Sep 10, 2023
1 parent 2077f58 commit 0676540
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def append_line(self, line):

parts = line.split(':', maxsplit=1)
if len(parts) < 2:
raise ValueError("Bad format: Each line must could be splited into two parts by ':'.")
raise ValueError("Bad format: Each line must could be splitted into two parts by ':'.")

prefix = parts[0]
data = parts[1].strip()
Expand Down

0 comments on commit 0676540

Please sign in to comment.