Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

depreciate ureg.__getitem__ #1997

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pint/facets/plain/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,11 +366,11 @@ def __getattr__(self, item: str) -> QuantityT:
# self.Unit will call parse_units
return self.Unit(item)

@deprecated(
"Calling the getitem method from a UnitRegistry will be removed in future versions of pint.\n"
"use `parse_expression` method or use the registry as a callable."
)
def __getitem__(self, item: str) -> UnitT:
logger.warning(
"Calling the getitem method from a UnitRegistry is deprecated. "
"use `parse_expression` method or use the registry as a callable."
)
return self.parse_expression(item)

def __contains__(self, item: str) -> bool:
Expand Down
Loading