Skip to content

Commit

Permalink
Changed one arg of add function
Browse files Browse the repository at this point in the history
  • Loading branch information
adnaniazi committed Aug 17, 2023
1 parent 99f878f commit 65ee6ec
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2] - 2023-08-17
### Changed
- Changed function arg names again for testing version bump

## [0.1.1] - 2023-08-17
### Changed
- Changed function arg names for testing version bump
Expand All @@ -11,6 +15,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Added
- Basic skeleton of the package and tested it


[0.1.2]: https://pypi.org/manage/project/capfinder/release/0.1.2/
[0.1.1]: https://pypi.org/manage/project/capfinder/release/0.1.1/
[0.1.0]: https://pypi.org/manage/project/capfinder/release/0.1.0/
8 changes: 4 additions & 4 deletions src/capfinder/add.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
def add(x: int, y: int, z: int) -> int:
def add(a: int, y: int, z: int) -> int:
"""
Add three numbers together
param x: first number
param a: first number
param y: second number
param z: third number
return: sum of x, y, and z
return: sum of a, y, and z
"""
return x + y + z
return a + y + z


if __name__ == "__main__":
Expand Down

0 comments on commit 65ee6ec

Please sign in to comment.