Skip to content

Commit

Permalink
Rename of the application call.
Browse files Browse the repository at this point in the history
  • Loading branch information
ateska authored Dec 1, 2023
1 parent 4e20487 commit 723bfb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion asab-iris.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
import asabiris

if __name__ == '__main__':
app = asabiris.IRISApplication()
app = asabiris.ASABIRISApplication()
app.run()
4 changes: 2 additions & 2 deletions asabiris/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .app import IRISApplication
from .app import ASABIRISApplication

__all__ = [
"IRISApplication"
"ASABIRISApplication"
]
2 changes: 1 addition & 1 deletion asabiris/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
})


class IRISApplication(asab.Application):
class ASABIRISApplication(asab.Application):

def __init__(self, args=None):
super().__init__(args=args)
Expand Down

0 comments on commit 723bfb2

Please sign in to comment.