Closed 1yam closed 2 months ago
Can you explain what this fixes ?
Why is there a fixup!
commit alone in a branch/PR ?
We got this change:
https://github.com/aleph-im/aleph-sdk-python/commit/d2f56b024cd3cff5d725293e786804b61ff791f2
That i didn't see when merging the Price feature. So here the fix
Summary: The change modifies the attribute name from
http_session
to_http_session
within theAlephHttpClient
class. This is a straightforward renaming of an attribute, which does not alter the functionality of the code or introduce any new features. The change is purely cosmetic and does not affect the behavior of the existing codebase.Highlighting:
Explanation: The modification involves a simple renaming of an attribute from
http_session
to_http_session
. This change does not introduce any new functionality, nor does it affect the behavior of the code. It is a straightforward refactoring aimed at improving the readability or clarity of the codebase. As such, it falls under the 'BLUE' category, which typically includes changes that are unlikely to introduce bugs or require deep understanding of the project architecture.