-
Notifications
You must be signed in to change notification settings - Fork 153
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
chore: replace interface{}
with any
#448
Conversation
Codecov Report
@@ Coverage Diff @@
## main #448 +/- ##
=======================================
Coverage 53.96% 53.96%
=======================================
Files 74 74
Lines 5830 5830
=======================================
Hits 3146 3146
Misses 2424 2424
Partials 260 260
|
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.
Hi. Thanks for housekeeping. There are some files that you changed in the PR, which are generated. These changes will be undone the next time go generate ./...
is run. I've commented on the files, these should not be part of the PR.
As a practice, generated files should never be changed manually. This is also mentioned at the top of every generated file:
// Code generated by xxxx. DO NOT EDIT.
Signed-off-by: Thomas Hipp <[email protected]>
Signed-off-by: Thomas Hipp <[email protected]>
Signed-off-by: Thomas Hipp <[email protected]>
Signed-off-by: Thomas Hipp <[email protected]>
Signed-off-by: Thomas Hipp <[email protected]>
Signed-off-by: Thomas Hipp <[email protected]>
interface{}
with any
interface{}
with any
a9db523
to
e948bed
Compare
🎉 This PR is included in version 3.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 2.12.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
I noticed a mixed use of
interface{}
andany
. This PR replaces all occurances ofinterface{}
withany
to be consistent and improve readability.Definition of Ready