I have a list with several items consisting solely of an align environment:
\begin{enumerate}
\item
\begin{align}
e^{\pi i} + 1 &= 0\\
1 + 1 &= 2
\end{align}
\end{enumerate}

By default, the environment begins on the line after the numbering. Other list environments with nested environments also prepend a line break automatically:
\begin{itemize}
\item
\[e^{\pi i} + 1 = 0\]
\end{itemize}
What is the best method to start the environment on the same line as the numbering?

