Skip to content

Commit 83e4371

Browse files
authoredOct 4, 2023
Merge pull request #151 from neutrinoceros/depr_2.0
2 parents f61b575 + d2bbd05 commit 83e4371

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed
 

‎cmyt/_utils.py

-20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import os
2-
import warnings
32
from collections.abc import Iterable, Sequence
43
from typing import TYPE_CHECKING, Any, Final, Literal, Optional
54

@@ -41,25 +40,6 @@ def prefix_name(name: str) -> str:
4140
return name
4241

4342

44-
def unprefix_name(name: str) -> str:
45-
"""
46-
Examples
47-
--------
48-
>>> unprefix_name("cmyt.arbre")
49-
'arbre'
50-
>>> unprefix_name("arbre")
51-
'arbre'
52-
"""
53-
warnings.warn(
54-
"cmyt._utils.unprefix_name is deprecated since version 1.4.0 "
55-
"and will be removed in a future version. "
56-
"Instead, use name.removeprefix('cmyt.')",
57-
category=DeprecationWarning,
58-
stacklevel=2,
59-
)
60-
return name.removeprefix(_CMYT_PREFIX)
61-
62-
6343
def register_colormap(
6444
name: str,
6545
*,

0 commit comments

Comments
 (0)
Please sign in to comment.