Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit ef21440

Browse files
committed
build fix
1 parent 5d967f1 commit ef21440

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli/onefuzz/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
import re
1111
import subprocess # nosec
1212
import time
13-
from urllib.parse import urlparse
1413
import uuid
1514
from enum import Enum
1615
from shutil import which
1716
from typing import Callable, Dict, List, Optional, Tuple, Type, TypeVar
17+
from urllib.parse import urlparse
1818
from uuid import UUID
1919

2020
import semver
@@ -1271,7 +1271,7 @@ def get_config(self, pool_name: primitives.PoolName) -> models.AgentConfig:
12711271

12721272
config = pool.config
12731273
if not pool.managed:
1274-
config.client_credentials = models.ClientCredentials(
1274+
config.client_credentials = models.ClientCredentials( # nosec
12751275
client_id=uuid.UUID(int=0),
12761276
client_secret="<client_secret>",
12771277
resource=self.onefuzz._backend.config.endpoint,

0 commit comments

Comments
 (0)