Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 487 Bytes

STYLE.md

File metadata and controls

20 lines (12 loc) · 487 Bytes

Code style in Unicursal

Imports

Imports should be grouped according to this extension of the PEP-8 guidelines on imports.

  • First-party Python libraries (e.g., 'import curses')

  • Third-party Python libraries (e.g., 'import gevent')

  • Unicursal library imports

    • Imports from src.lib.core.*
    • Imports from anything else
    • Imports from src.lib.util.*
  • Game library imports

  • Unicursal data imports

  • Game data imports