Skip to content

Commit

Permalink
nit #10
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed May 29, 2024
1 parent 2430fba commit 8566e04
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 25 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/rebuild-demo.yml

This file was deleted.

2 changes: 1 addition & 1 deletion arches_lingo/etl_modules/migrate_to_lingo.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from arches.app.models.concept import Concept
from arches.app.models.models import LoadStaging, NodeGroup, LoadEvent
from arches.app.utils.betterJSONSerializer import JSONSerializer
import arches_rdm.tasks as tasks
import arches_lingo.tasks as tasks

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion arches_lingo/migrations/0002_rdm_to_lingo_etl_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('arches_rdm', '0001_initial'),
('arches_lingo', '0001_initial'),
('models', '10260_add_iiifmanifest_globalid'),
]

Expand Down
2 changes: 1 addition & 1 deletion arches_lingo/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from django.contrib.auth.models import User
from django.utils.translation import gettext as _
from arches.app.models import models
from arches_rdm.etl_modules import migrate_to_lingo
from arches_lingo.etl_modules import migrate_to_lingo
from arches.app.tasks import notify_completion

@shared_task
Expand Down
6 changes: 3 additions & 3 deletions arches_lingo/test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Depends on /arches being on the python path, as arches.tests is not importable
from tests.test_settings import *

APP_NAME = "arches_rdm"
APP_NAME = "arches_lingo"
APP_ROOT = os.path.dirname(__file__)
INSTALLED_APPS = (
"webpack_loader",
Expand All @@ -23,9 +23,9 @@
"corsheaders",
"oauth2_provider",
"django_celery_results",
"arches_rdm",
"arches_lingo",
)
ROOT_URLCONF = "arches_rdm.urls"
ROOT_URLCONF = "arches_lingo.urls"

LOCALE_PATHS = [os.path.join(APP_ROOT, "locale")]

Expand Down
2 changes: 1 addition & 1 deletion arches_lingo/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Value,
)

from arches_rdm.const import (
from arches_lingo.const import (
ENGLISH_VALUE_ID,
CONCEPTS_GRAPH_ID,
LANGUAGE_CONCEPT_ID,
Expand Down
2 changes: 1 addition & 1 deletion arches_lingo/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from django.conf.urls.i18n import i18n_patterns
from django.urls import include, path

from arches_rdm.views import ConceptTreeView
from arches_lingo.views import ConceptTreeView

urlpatterns = [
path('', include('arches.urls')),
Expand Down
2 changes: 1 addition & 1 deletion arches_lingo/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

from arches.app.utils.response import JSONResponse

from arches_rdm.const import (
from arches_lingo.const import (
SCHEMES_GRAPH_ID,
TOP_CONCEPT_OF_NODE_AND_NODEGROUP,
BROADER_NODE_AND_NODEGROUP,
Expand Down

0 comments on commit 8566e04

Please sign in to comment.