Skip to content

Commit

Permalink
Fix spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
bpepple committed Jul 28, 2024
1 parent d63e0bf commit c8b697b
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion esak/character.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Character:
"""

def __init__(self, **kwargs):
"""Intialize a new Character."""
"""Initialize a new Character."""
for k, v in kwargs.items():
setattr(self, k, v)

Expand Down
2 changes: 1 addition & 1 deletion esak/comic.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class Comic:
"""

def __init__(self, **kwargs):
"""Intialize a new comic."""
"""Initialize a new comic."""
for k, v in kwargs.items():
setattr(self, k, v)

Expand Down
2 changes: 1 addition & 1 deletion esak/creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Creator:
"""

def __init__(self, **kwargs):
"""Intialize a new Creator."""
"""Initialize a new Creator."""
for k, v in kwargs.items():
setattr(self, k, v)

Expand Down
2 changes: 1 addition & 1 deletion esak/dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Dates:
"""

def __init__(self, on_sale=None, foc=None, unlimited=None, **kwargs):
"""Intialize a new date."""
"""Initialize a new date."""
self.on_sale = on_sale
self.foc = foc
self.unlimited = unlimited
Expand Down
2 changes: 1 addition & 1 deletion esak/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Events:
"""

def __init__(self, **kwargs) -> None:
"""Intialize a new event."""
"""Initialize a new event."""
for k, v in kwargs.items():
setattr(self, k, v)

Expand Down
2 changes: 1 addition & 1 deletion esak/prices.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Prices:
"""

def __init__(self, print=None, digital=None, **kwargs):
"""Intialize a new price."""
"""Initialize a new price."""
self.print = print
self.digital = digital
self.unknown = kwargs
Expand Down
2 changes: 1 addition & 1 deletion esak/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Series:
"""

def __init__(self, **kwargs):
"""Intialize a new series."""
"""Initialize a new series."""
for k, v in kwargs.items():
setattr(self, k, v)

Expand Down
2 changes: 1 addition & 1 deletion esak/sqlite_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class SqliteCache:
"""

def __init__(self, db_name: str = "esak_cache.db", expire: int | None = None) -> None:
"""Intialize a new SqliteCache."""
"""Initialize a new SqliteCache."""
self.expire = expire
self.con = sqlite3.connect(db_name)
self.cur = self.con.cursor()
Expand Down
2 changes: 1 addition & 1 deletion esak/stories.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Stories:
"""

def __init__(self, **kwargs) -> None:
"""Intialize a new story."""
"""Initialize a new story."""
for k, v in kwargs.items():
setattr(self, k, v)

Expand Down
2 changes: 1 addition & 1 deletion esak/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Summary:
"""

def __init__(self, id=None, name=None, resource_uri=None, type=None, role=None, **kwargs):
"""Intialize a new Summary."""
"""Initialize a new Summary."""
self.id = id
self.name = name
self.resource_uri = resource_uri
Expand Down
2 changes: 1 addition & 1 deletion esak/text_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class TextObject:
"""

def __init__(self, **kwargs):
"""Intialize a new TextObjects."""
"""Initialize a new TextObjects."""
for k, v in kwargs.items():
setattr(self, k, v)

Expand Down
2 changes: 1 addition & 1 deletion esak/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(
detail=None,
**kwargs,
):
"""Intialize a new url."""
"""Initialize a new url."""
self.digital_purchase_date = digital_purchase_date
self.foc_date = foc_date
self.onsale_date = onsale_date
Expand Down

0 comments on commit c8b697b

Please sign in to comment.