change for local import

This commit is contained in:
Sergey Shchelkanov 2023-04-11 11:17:15 +03:00
parent 4e726f406e
commit 6035ef1fb5
4 changed files with 11 additions and 11 deletions

View File

@ -1,7 +1,7 @@
import time import time
from tclrpc import TclException from .tclrpc import TclException
from tclrpc import OpenOcdTclRpc from .tclrpc import OpenOcdTclRpc
# -------------------------- # --------------------------
# PM register offset # PM register offset

View File

@ -1,5 +1,5 @@
from tclrpc import TclException from .tclrpc import TclException
from tclrpc import OpenOcdTclRpc from .tclrpc import OpenOcdTclRpc
from pathlib import Path from pathlib import Path
def write_file(filename): def write_file(filename):

View File

@ -1,6 +1,6 @@
import time import time
from tclrpc import TclException from .tclrpc import TclException
from tclrpc import OpenOcdTclRpc from .tclrpc import OpenOcdTclRpc
# -------------------------- # --------------------------
# PM register offset # PM register offset

View File

@ -1,12 +1,12 @@
import shlex import shlex
from tclrpc import OpenOcdTclRpc from .tclrpc import OpenOcdTclRpc
import argparse import argparse
import sys import sys
import subprocess import subprocess
import mik32_eeprom from .mik32_eeprom import *
import mik32_spifi from .mik32_spifi import *
import mik32_ram from .mik32_ram import *
from mik32_parsers import * from .mik32_parsers import *
import os import os
from typing import Iterable from typing import Iterable