Skip to content

Commit

Permalink
Merge pull request #60 from Code4GovTech/development
Browse files Browse the repository at this point in the history
fixing deployment error
  • Loading branch information
KDwevedi authored Mar 13, 2024
2 parents cc747e9 + edcd5fe commit 1930afb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cogs/vcCog.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


class CommunityVCView(ui.View):
def __init__(self, *, timeout: float | None = None):
def __init__(self, *, timeout=None):
super().__init__(timeout=timeout)

def isCommunityContributor(self, roles: list[Role]):
Expand Down Expand Up @@ -145,7 +145,7 @@ async def serveDPGProfile(self, interaction: Interaction, button: ui.Button):


class DMPVCView(ui.View):
def __init__(self, *, timeout: float | None = None):
def __init__(self, *, timeout=None):
super().__init__(timeout=timeout)

def isDMPContributor(self, roles: list[Role]):
Expand Down Expand Up @@ -211,7 +211,7 @@ async def serveCertificateLink(self, interaction: Interaction, button: ui.Button


class VCProgramSelection(ui.View):
def __init__(self, *, timeout: float | None = None):
def __init__(self, *, timeout=None):
super().__init__(timeout=timeout)

async def resetSelectMenu(self, interaction):
Expand Down

0 comments on commit 1930afb

Please sign in to comment.