Files
Learn-Python-Programming-Th…/ch04/imports.py
T
adii1823 ee641c189f ch04
2021-10-28 17:37:54 +05:30

12 lines
259 B
Python

# imports.py
from datetime import datetime, timezone # two imports on the same line
from unittest.mock import patch # single import
import pytest # third party library
from core.models import ( # multiline import
Exam,
Exercise,
Solution,
)