feat: add linting and testing commands to Makefile; enhance CLI with new features and tests
This commit is contained in:
@@ -7,18 +7,14 @@ class _DummyPlanka:
|
||||
"""Stub for plankapy.v1.Planka to satisfy root __init__.py"""
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
raise NotImplementedError(
|
||||
"plankapy.v1 is not available in this build; use plankapy.v2"
|
||||
)
|
||||
raise NotImplementedError("plankapy.v1 is not available in this build; use plankapy.v2")
|
||||
|
||||
|
||||
class _DummyPasswordAuth:
|
||||
"""Stub for plankapy.v1.PasswordAuth to satisfy root __init__.py"""
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
raise NotImplementedError(
|
||||
"plankapy.v1 is not available in this build; use plankapy.v2"
|
||||
)
|
||||
raise NotImplementedError("plankapy.v1 is not available in this build; use plankapy.v2")
|
||||
|
||||
|
||||
# Create a dummy v1 module to satisfy plankapy's root __init__.py
|
||||
|
||||
Reference in New Issue
Block a user