Skip to content
Snippets Groups Projects
Verified Commit a6f43240 authored by Robert Rosca's avatar Robert Rosca
Browse files

Fix import order

parent 2854f22b
No related branches found
No related tags found
2 merge requests!433Fix/pre commit whitespace,!417Feat/pre commit checks
...@@ -6,12 +6,14 @@ from collections import OrderedDict ...@@ -6,12 +6,14 @@ from collections import OrderedDict
from datetime import datetime, timezone from datetime import datetime, timezone
from http.server import BaseHTTPRequestHandler, HTTPServer from http.server import BaseHTTPRequestHandler, HTTPServer
from subprocess import check_output from subprocess import check_output
from xfel_calibrate.settings import (free_nodes_cmd, preempt_nodes_cmd,
reservation)
from uuid import uuid4 from uuid import uuid4
import yaml import yaml
from jinja2 import Template from jinja2 import Template
from xfel_calibrate.settings import (free_nodes_cmd, preempt_nodes_cmd,
reservation)
class LimitedSizeDict(OrderedDict): class LimitedSizeDict(OrderedDict):
def __init__(self, *args, **kwds): def __init__(self, *args, **kwds):
......
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