diff --git a/mokkari/__init__.py b/mokkari/__init__.py index 6f78b71..b6118cd 100644 --- a/mokkari/__init__.py +++ b/mokkari/__init__.py @@ -1,7 +1,7 @@ """Project entry file.""" # Keep this at beginning of file to prevent circular import with session -__version__ = "3.1.0" +__version__ = "3.2.0" from mokkari import exceptions, session, sqlite_cache diff --git a/mokkari/session.py b/mokkari/session.py index a20d373..79d7ae8 100644 --- a/mokkari/session.py +++ b/mokkari/session.py @@ -38,7 +38,8 @@ class Session: """A class representing a Session for interacting with the API. - Args:username: A string representing the username for authentication. + Args: + username: A string representing the username for authentication. passwd: A string representing the password for authentication. cache: An optional SqliteCache object for caching data. user_agent: An optional string representing the user agent for the session. diff --git a/package-lock.json b/package-lock.json index 9d751a2..7a588be 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "mokkari", - "version": "3.1.0", + "version": "3.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "version": "3.1.0", + "version": "3.2.0", "devDependencies": { "@fsouza/prettierd": "^0.25.1", "@prettier/plugin-xml": "^3.0.0", diff --git a/package.json b/package.json index 4dd096f..8acec19 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "3.1.0", + "version": "3.2.0", "description": "mokkari linting", "type": "module", "scripts": { diff --git a/poetry.lock b/poetry.lock index 58b0ca7..da1e79e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -967,13 +967,13 @@ testing = ["covdefaults (>=2.3)", "pytest (>=8.2.2)", "pytest-cov (>=5)", "pytes [[package]] name = "pyright" -version = "1.1.372" +version = "1.1.373" description = "Command line wrapper for pyright" optional = false python-versions = ">=3.7" files = [ - {file = "pyright-1.1.372-py3-none-any.whl", hash = "sha256:25b15fb8967740f0949fd35b963777187f0a0404c0bd753cc966ec139f3eaa0b"}, - {file = "pyright-1.1.372.tar.gz", hash = "sha256:a9f5e0daa955daaa17e3d1ef76d3623e75f8afd5e37b437d3ff84d5b38c15420"}, + {file = "pyright-1.1.373-py3-none-any.whl", hash = "sha256:b805413227f2c209f27b14b55da27fe5e9fb84129c9f1eb27708a5d12f6f000e"}, + {file = "pyright-1.1.373.tar.gz", hash = "sha256:f41bcfc8b9d1802b09921a394d6ae1ce19694957b628bc657629688daf8a83ff"}, ] [package.dependencies] diff --git a/pyproject.toml b/pyproject.toml index edc40af..b741fbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mokkari" -version = "3.1.0" +version = "3.2.0" description = "Python wrapper for Metron API" authors = ["Brian Pepple "] license = "GPL-3.0-or-later"