Skip to content

Commit

Permalink
reformat and sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vanous committed Oct 18, 2024
1 parent 43f308b commit 74a2a7c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 2 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
from pathlib import Path

import pytest

from pygdtf import pygdtf

# This file sets up a pytest fixtures for the tests
Expand Down
11 changes: 6 additions & 5 deletions pygdtf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from typing import List, Union, Optional
import datetime
import zipfile
from enum import Enum as pyEnum
from typing import List, Optional, Union
from xml.etree import ElementTree
from xml.etree.ElementTree import Element
import zipfile
from .value import * # type: ignore

from .utils import *
import datetime
from enum import Enum as pyEnum
from .value import * # type: ignore

__version__ = "1.0.5.dev4"

Expand Down
5 changes: 3 additions & 2 deletions pygdtf/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pygdtf
from typing import List, Dict, Any, Optional
import datetime
from typing import Any, Dict, List, Optional

import pygdtf


def getValue(dmx_value, fine=False):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pathlib import Path
import json
from pathlib import Path


def test_modes_channels_count(pygdtf_module):
Expand Down

0 comments on commit 74a2a7c

Please sign in to comment.