Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JuReMq committed Jan 13, 2025
1 parent ad3560b commit 8eb8ba9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/ihexer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
from py_app_dev.core.exceptions import UserNotificationException
from py_app_dev.core.logging import logger, setup_logger, time_it

from ihex import __version__
from ihex.ihex import IntelHexDiff, IntelHexParser, IntelHexPrinter
from ihexer import __version__
from ihexer.ihexer import IntelHexDiff, IntelHexParser, IntelHexPrinter

package_name = "ihex"
package_name = "ihexer"

app = typer.Typer(name=package_name, help="Intel HEX utils.", no_args_is_help=True)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_ihex.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

from ihex.ihex import IntelHexParser, IntelHexPrinter, IntelHexSegment
from ihexer.ihexer import IntelHexParser, IntelHexPrinter, IntelHexSegment
from tests.utils import get_tests_data_file


Expand Down

0 comments on commit 8eb8ba9

Please sign in to comment.