Skip to content

Commit

Permalink
depreciate ureg.__getitem__
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgsavage committed May 26, 2024
1 parent f2e4081 commit 09acae1
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 09acae1

Please sign in to comment.