commit message from python script
This commit is contained in:
11
rclone/lib/python3.11/site-packages/markdown_it/_compat.py
Normal file
11
rclone/lib/python3.11/site-packages/markdown_it/_compat.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from collections.abc import Mapping
|
||||
import sys
|
||||
from typing import Any
|
||||
|
||||
DATACLASS_KWARGS: Mapping[str, Any]
|
||||
if sys.version_info >= (3, 10):
|
||||
DATACLASS_KWARGS = {"slots": True}
|
||||
else:
|
||||
DATACLASS_KWARGS = {}
|
||||
Reference in New Issue
Block a user