Skip to content

Commit

Permalink
Linting with black
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseIgnacioTamayo committed Feb 29, 2024
1 parent 088ee34 commit dc4083e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyangbind/lib/yangtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,9 @@ def __init__(self, *args, **kwargs):

if value is not None:
set_method(value)
self._type = regex.sub(r"<(type|class) '(?P<class>.*)'>", r"\g<class>", str(get_method()._base_type))
self._type = regex.sub(
r"<(type|class) '(?P<class>.*)'>", r"\g<class>", str(get_method()._base_type)
)

self._utype = get_method()._base_type
self._ptr = True
Expand Down

0 comments on commit dc4083e

Please sign in to comment.