Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 517 Bytes

checklist.md

File metadata and controls

33 lines (24 loc) · 517 Bytes

Сheck Your Code Against the Following Points

Don't Push db files

Make sure you don't push db files (files with .sqlite, .db3, etc. extension).

Code Style

  1. Don't forget that the name of the class should be in the singular form.

Good Example:

class Manager:
  pass

Bad Example:

class Managers:
  pass
  1. If db contains not only one object - name it plural.

Good Example:

self.table_name = "objects"

Bad Example:

self.table_name = "object"