X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Fvalue.py;fp=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Fvalue.py;h=c938ff9046bba925db8b2d09b9f73f572c3aa4d4;hb=5995b304e5601bf9b97ffa661b21874bec6c0e3a;hp=d2cb4e076a11adc4f86eafecb9a9de3910a535c0;hpb=7554731eee0bd061ac0cf55484a64a514913d148;p=babeltrace.git diff --git a/src/bindings/python/bt2/bt2/value.py b/src/bindings/python/bt2/bt2/value.py index d2cb4e07..c938ff90 100644 --- a/src/bindings/python/bt2/bt2/value.py +++ b/src/bindings/python/bt2/bt2/value.py @@ -2,15 +2,16 @@ # # Copyright (c) 2017 Philippe Proulx -from bt2 import native_bt -from bt2 import object as bt2_object -from bt2 import utils as bt2_utils -from bt2 import error as bt2_error -import collections.abc -import functools -import numbers -import math import abc +import math +import numbers +import functools +import collections.abc + +from bt2 import error as bt2_error +from bt2 import utils as bt2_utils +from bt2 import object as bt2_object +from bt2 import native_bt def _create_from_ptr_template(ptr, object_map):