You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python's naming convention uses snake case names for function and method names. Function and method names using camel case should be deprecated for replacement with snake case names. For example, the Result.getData method should be deprecated in favor of the name Result.get_data (although, in this case, download is perhaps a more appropriate name for this method to better indicate a file is being downloaded, not that the method is actually returning data to the caller).
The text was updated successfully, but these errors were encountered:
Python's naming convention uses snake case names for function and method names. Function and method names using camel case should be deprecated for replacement with snake case names. For example, the
Result.getData
method should be deprecated in favor of the nameResult.get_data
(although, in this case,download
is perhaps a more appropriate name for this method to better indicate a file is being downloaded, not that the method is actually returning data to the caller).The text was updated successfully, but these errors were encountered: