Skip to content

Commit

Permalink
Merge pull request #10 from zorroforever/dev
Browse files Browse the repository at this point in the history
fix:directory changed.
  • Loading branch information
zorroforever authored Jun 12, 2024
2 parents 2692b49 + 3903564 commit 10459a2
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bank/bank.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
from bank.money import Money
from translations import get_translation
from util.translations import get_translation


class Bank:
Expand Down
Empty file added cost/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion fixed_consume.py → cost/fixed_consume.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from bank.money import Money
from translations import get_translation
from util.translations import get_translation


class FixedConsume:
Expand Down
6 changes: 3 additions & 3 deletions life.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import json
import translations
from util import translations
from bank.bank import Bank
from fixed_consume import FixedConsume
from cost.fixed_consume import FixedConsume
import argparse
import sys

from output_collector import OutputCollector
from util.output_collector import OutputCollector


def load_config(config_path):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_en.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import subprocess
import os

from output_collector import OutputCollector
from util.output_collector import OutputCollector


class TestLifeEn:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ja.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import subprocess
import os

from output_collector import OutputCollector
from util.output_collector import OutputCollector


class TestLifeJA:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_zh.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import subprocess
import os

from output_collector import OutputCollector
from util.output_collector import OutputCollector


class TestLifeZH:
Expand Down
Empty file added util/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.

0 comments on commit 10459a2

Please sign in to comment.