Skip to content

Commit b3deec3

Browse files
committed
Fix black
1 parent 1d41b9e commit b3deec3

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/vws/reports.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import datetime
66
from dataclasses import dataclass
77
from enum import Enum
8-
from typing import Optional
98

109

1110
@dataclass

src/vws/vws.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import json
1010
from datetime import date
1111
from time import sleep
12-
from typing import Dict, Optional, Union
12+
from typing import Dict
1313
from urllib.parse import urljoin
1414

1515
import requests
@@ -631,7 +631,7 @@ def update_target(
631631
~vws.exceptions.vws_exceptions.RequestTimeTooSkewed: There is an
632632
error with the time sent to Vuforia.
633633
"""
634-
data: Dict[str, str | bool | float| int] = {}
634+
data: Dict[str, str | bool | float | int] = {}
635635

636636
if name is not None:
637637
data['name'] = name

tests/test_vws.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import io
88
import random
99
import uuid
10-
from typing import Optional
1110

1211
import pytest
1312
from freezegun import freeze_time

0 commit comments

Comments
 (0)