Skip to content

Commit

Permalink
PascalCase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Canicula98 committed Nov 13, 2024
1 parent 8f6952a commit 872ecde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/client-logger-config/client.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import os

from model.client_model import Client_model
from model.client_model import ClientModel

from dataclay import Client

Expand All @@ -19,7 +19,7 @@
client = Client(host="127.0.0.1", username="testuser", password="s3cret", dataset="testdata")
client.start()

client_mod = Client_model("Client")
client_mod = ClientModel("Client")
client_mod.make_persistent("alias")

name = client_mod.get_name()
Expand Down
2 changes: 1 addition & 1 deletion examples/client-logger-config/model/client_model.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from dataclay import DataClayObject, activemethod


class Client_model(DataClayObject):
class ClientModel(DataClayObject):

name: str

Expand Down

0 comments on commit 872ecde

Please sign in to comment.