Skip to content

Commit

Permalink
Merge pull request #1997 from andrewgsavage/getitem
Browse files Browse the repository at this point in the history
depreciate ureg.__getitem__
  • Loading branch information
jules-ch authored Feb 13, 2025
2 parents c350f02 + 09acae1 commit 811c5ed
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 @@ -373,11 +373,11 @@ def __getattr__(self, item: str) -> UnitT:
# 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 811c5ed

Please sign in to comment.