Search found 1 match

by sergei721
Fri Sep 16, 2022 4:40 pm
Forum: General Discussion
Topic: Who thinks it's worth specifying which parameters to pass values to?
Replies: 1
Views: 3106

Who thinks it's worth specifying which parameters to pass values to?

@staticmethod def _create_table( columns: str, primary_key: str, hash_id: str, ) -> str: sql = """CREATE TABLE ...""" return sql In your opinion, is it worth specifying parameters to which values are passed (if the names of variables and parameters match)? One of the c...

Go to advanced search