Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 25, 2024
1 parent b4955aa commit 00318b9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion pyaedt/application/aedt_objects.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import sys
import time

from pyaedt import pyaedt_function_handler, is_linux, settings
from pyaedt import is_linux
from pyaedt import pyaedt_function_handler
from pyaedt import settings
from pyaedt.generic.desktop_sessions import _desktop_sessions


Expand Down
3 changes: 2 additions & 1 deletion pyaedt/circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
from pyaedt.generic.DataHandlers import from_rkm_to_aedt
from pyaedt.generic.constants import unit_converter
from pyaedt.generic.filesystem import search_files
from pyaedt.generic.general_methods import generate_unique_name, is_linux
from pyaedt.generic.general_methods import generate_unique_name
from pyaedt.generic.general_methods import is_linux
from pyaedt.generic.general_methods import open_file
from pyaedt.generic.general_methods import pyaedt_function_handler
from pyaedt.modules.Boundary import CurrentSinSource
Expand Down
5 changes: 3 additions & 2 deletions pyaedt/maxwell.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@

from __future__ import absolute_import # noreorder

import time
from collections import OrderedDict
import io
import os
import re
import time

from pyaedt import settings
from pyaedt.application.Analysis3D import FieldAnalysis3D
from pyaedt.application.Variables import decompose_variable_value
from pyaedt.generic.constants import SOLUTIONS
from pyaedt.generic.general_methods import generate_unique_name, is_linux
from pyaedt.generic.general_methods import generate_unique_name
from pyaedt.generic.general_methods import is_linux
from pyaedt.generic.general_methods import open_file
from pyaedt.generic.general_methods import pyaedt_function_handler
from pyaedt.generic.general_methods import read_configuration_file
Expand Down
3 changes: 2 additions & 1 deletion pyaedt/modeler/circuits/PrimitivesNexxim.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
from pyaedt.application.Variables import decompose_variable_value
from pyaedt.generic.LoadAEDTFile import load_keyword_in_aedt_file
from pyaedt.generic.constants import AEDT_UNITS
from pyaedt.generic.general_methods import generate_unique_name, is_linux
from pyaedt.generic.general_methods import generate_unique_name
from pyaedt.generic.general_methods import is_linux
from pyaedt.generic.general_methods import open_file
from pyaedt.generic.general_methods import pyaedt_function_handler
from pyaedt.modeler.circuits.PrimitivesCircuit import CircuitComponents
Expand Down
3 changes: 2 additions & 1 deletion pyaedt/modeler/schematic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

from pyaedt import settings
from pyaedt.generic.constants import AEDT_UNITS
from pyaedt.generic.general_methods import pyaedt_function_handler, is_linux
from pyaedt.generic.general_methods import is_linux
from pyaedt.generic.general_methods import pyaedt_function_handler
from pyaedt.modeler.cad.Modeler import Modeler
from pyaedt.modeler.circuits.PrimitivesEmit import EmitComponent
from pyaedt.modeler.circuits.PrimitivesEmit import EmitComponents
Expand Down

0 comments on commit 00318b9

Please sign in to comment.