mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
(cherry picked from commit 7d26e211c67f2574078e1f0e8951f744889d82d6) IJ-CR-10316 GitOrigin-RevId: 34d4bc72b11613c0603587c1c0a9e640b0add023
6 lines
100 B
Python
6 lines
100 B
Python
from __future__ import annotations
|
|
|
|
from typing import Union
|
|
|
|
|
|
a: <caret>int | Union[str, bool] = 42 |