Skip to content
Snippets Groups Projects
Commit 8e940508 authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Initial commit

parent 17d129e6
No related branches found
No related tags found
No related merge requests found
File moved
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<project version="4"> <project version="4">
<component name="ProjectModuleManager"> <component name="ProjectModuleManager">
<modules> <modules>
<module fileurl="file://$PROJECT_DIR$/.idea/model-server.iml" filepath="$PROJECT_DIR$/.idea/model-server.iml" /> <module fileurl="file://$PROJECT_DIR$/.idea/model_server.iml" filepath="$PROJECT_DIR$/.idea/model_server.iml" />
</modules> </modules>
</component> </component>
</project> </project>
\ No newline at end of file
File moved
File moved
File moved
...@@ -4,7 +4,7 @@ from pathlib import Path ...@@ -4,7 +4,7 @@ from pathlib import Path
from time import strftime, localtime from time import strftime, localtime
from conf.server import paths from conf.server import paths
from base.share import SharedImageDirectory from model_server.share import SharedImageDirectory
def create_session_log(): def create_session_log():
""" """
......
File moved
# This is a sample Python script.
# Press Shift+F10 to execute it or replace it with your code.
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
def print_hi(name):
# Use a breakpoint in the code line below to debug your script.
print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
print_hi('PyCharm')
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
import unittest import unittest
from base.session import Session from model_server.session import Session
class TestGetSessionObject(unittest.TestCase): class TestGetSessionObject(unittest.TestCase):
def setUp(self) -> None: def setUp(self) -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment