From c8b697bffd1fc1bdc984d0ca3cc97d8fdf6606f1 Mon Sep 17 00:00:00 2001 From: Brian Pepple Date: Sun, 28 Jul 2024 10:22:32 -0400 Subject: [PATCH] Fix spelling error --- esak/character.py | 2 +- esak/comic.py | 2 +- esak/creator.py | 2 +- esak/dates.py | 2 +- esak/event.py | 2 +- esak/prices.py | 2 +- esak/series.py | 2 +- esak/sqlite_cache.py | 2 +- esak/stories.py | 2 +- esak/summary.py | 2 +- esak/text_object.py | 2 +- esak/urls.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/esak/character.py b/esak/character.py index 04c8b3f..df99a8e 100644 --- a/esak/character.py +++ b/esak/character.py @@ -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) diff --git a/esak/comic.py b/esak/comic.py index 79b88b6..3d1ab1a 100644 --- a/esak/comic.py +++ b/esak/comic.py @@ -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) diff --git a/esak/creator.py b/esak/creator.py index 70e0006..2970167 100644 --- a/esak/creator.py +++ b/esak/creator.py @@ -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) diff --git a/esak/dates.py b/esak/dates.py index 334933a..b298bd9 100644 --- a/esak/dates.py +++ b/esak/dates.py @@ -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 diff --git a/esak/event.py b/esak/event.py index 9df5751..7906b19 100644 --- a/esak/event.py +++ b/esak/event.py @@ -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) diff --git a/esak/prices.py b/esak/prices.py index 2e57ed7..2436660 100644 --- a/esak/prices.py +++ b/esak/prices.py @@ -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 diff --git a/esak/series.py b/esak/series.py index 008074d..713d7dd 100644 --- a/esak/series.py +++ b/esak/series.py @@ -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) diff --git a/esak/sqlite_cache.py b/esak/sqlite_cache.py index 4933c29..41ee140 100644 --- a/esak/sqlite_cache.py +++ b/esak/sqlite_cache.py @@ -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() diff --git a/esak/stories.py b/esak/stories.py index a18d7be..5a5f6d5 100644 --- a/esak/stories.py +++ b/esak/stories.py @@ -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) diff --git a/esak/summary.py b/esak/summary.py index 5f79e53..dfc55a8 100644 --- a/esak/summary.py +++ b/esak/summary.py @@ -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 diff --git a/esak/text_object.py b/esak/text_object.py index be9c48f..39d2506 100644 --- a/esak/text_object.py +++ b/esak/text_object.py @@ -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) diff --git a/esak/urls.py b/esak/urls.py index e92e098..d24e9af 100644 --- a/esak/urls.py +++ b/esak/urls.py @@ -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