File size: 401 Bytes
9c6594c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import google.protobuf
protobuf_version = google.protobuf.__version__[0]
if protobuf_version == "3":
from wandb.proto.v3.wandb_settings_pb2 import *
elif protobuf_version == "4":
from wandb.proto.v4.wandb_settings_pb2 import *
elif protobuf_version == "5":
from wandb.proto.v5.wandb_settings_pb2 import *
elif protobuf_version == "6":
from wandb.proto.v6.wandb_settings_pb2 import *
|