Skip to content

Commit

Permalink
0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCommCraft committed May 21, 2024
1 parent 9882931 commit ff80e17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dungeonmaker/dm_backend/modules/database/dba.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from typing import Literal
from dataclasses import dataclass, field
from .basetypes import BaseMongoDBAtlasSession
from ..dm.dba import dba.BaseDatabaseAbstraction
from ..dm.dba import BaseDatabaseAbstraction
from ..dm.dmtypes import UserId, DungeonId, RoomId

@dataclass(slots=True)
class MongoDBDatabaseAbstraction(dba.BaseDatabaseAbstraction):
class MongoDBDatabaseAbstraction(BaseDatabaseAbstraction):
"""
Class for MongoDB database abstractions.
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='dungeonmaker',
version='0.6.7',
version='0.6.8',
author='Simon Gilde',
author_email='[email protected]',
description='Dungeon maker backend and other things',
Expand Down

0 comments on commit ff80e17

Please sign in to comment.